diff --git a/.codespellrc b/.codespellrc index 5e7cb2b2e..9b2cf624d 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,3 +1,3 @@ [codespell] write-changes = True -ignore-words-list = criterias,afterall,valeu,ureue,equest,ure +ignore-words-list = criterias,afterall,valeu,ureue,equest,ure,assertIn diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 992312a39..6531652d0 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -9,7 +9,7 @@ body: ### ⚠️ 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. - Also, note that **Paperless-ngx does not perform OCR itself**, that is handled by other tools. Problems with OCR of specific files should likely be raised 'upstream', see https://github.com/ocrmypdf/OCRmyPDF/issues or https://github.com/tesseract-ocr/tesseract/issues + 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 attributes: value: | @@ -86,6 +86,12 @@ body: description: Note there are significant differences from the official image and linuxserver.io, please check if your issue is specific to the third-party image. validations: required: true + - type: textarea + id: system-status + attributes: + label: System status + description: If available, copy & paste the system status output from Settings > System Status > Copy + render: json - type: input id: browser attributes: @@ -97,11 +103,6 @@ body: attributes: label: Configuration changes description: Any configuration changes you made in `docker-compose.yml`, `docker-compose.env` or `paperless.conf`. - - type: input - id: other - attributes: - label: Other - description: Any other relevant details. - type: checkboxes id: required-checks attributes: diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f37e793fc..cf9d7201c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -49,11 +49,14 @@ updates: - "paperless-ngx/backend" ignore: - dependency-name: "uvicorn" + - dependency-name: "djangorestframework" + versions: + - "3.15.0" + - "3.15.1" groups: development: patterns: - "*pytest*" - - "black" - "ruff" - "mkdocs-material" django: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d145f948c..15fcc24b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ on: env: # This is the version of pipenv all the steps will use # If changing this, change Dockerfile - DEFAULT_PIP_ENV_VERSION: "2023.12.1" + DEFAULT_PIP_ENV_VERSION: "2024.0.1" # This is the default version of Python to use in most steps which aren't specific DEFAULT_PYTHON_VERSION: "3.10" diff --git a/.github/workflows/cleanup-tags.yml b/.github/workflows/cleanup-tags.yml index 545c150a2..5405d0559 100644 --- a/.github/workflows/cleanup-tags.yml +++ b/.github/workflows/cleanup-tags.yml @@ -33,7 +33,7 @@ jobs: - name: Clean temporary images if: "${{ env.TOKEN != '' }}" - uses: stumpylog/image-cleaner-action/ephemeral@v0.6.0 + uses: stumpylog/image-cleaner-action/ephemeral@v0.7.0 with: token: "${{ env.TOKEN }}" owner: "${{ github.repository_owner }}" @@ -61,7 +61,7 @@ jobs: - name: Clean untagged images if: "${{ env.TOKEN != '' }}" - uses: stumpylog/image-cleaner-action/untagged@v0.6.0 + uses: stumpylog/image-cleaner-action/untagged@v0.7.0 with: token: "${{ env.TOKEN }}" owner: "${{ github.repository_owner }}" diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index 741ef9584..ff14da268 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: crowdin action - uses: crowdin/github-action@v1 + uses: crowdin/github-action@v2 with: upload_translations: false download_translations: true diff --git a/.github/workflows/repo-maintenance.yml b/.github/workflows/repo-maintenance.yml index c545eee17..c9c134242 100644 --- a/.github/workflows/repo-maintenance.yml +++ b/.github/workflows/repo-maintenance.yml @@ -22,7 +22,7 @@ jobs: with: days-before-stale: 7 days-before-close: 14 - any-of-labels: 'cant-reproduce,not a bug' + any-of-labels: 'stale,cant-reproduce,not a bug' stale-issue-label: stale stale-pr-label: stale stale-issue-message: > diff --git a/.gitignore b/.gitignore index 3ac5cc0dc..f5bf2de6a 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ var/ *.egg-info/ .installed.cfg *.egg +/src/paperless_mail/templates/node_modules # PyInstaller # Usually these files are written by a python script from a template diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a7156b7e..15689d6e2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: - id: check-case-conflict - id: detect-private-key - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell exclude: "(^src-ui/src/locale/)|(^src-ui/e2e/)|(^src/paperless_mail/tests/samples/)" @@ -47,13 +47,10 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.4.2' + rev: 'v0.4.9' hooks: - id: ruff - - repo: https://github.com/psf/black-pre-commit-mirror - rev: 24.4.2 - hooks: - - id: black + - id: ruff-format # Dockerfile hooks - repo: https://github.com/AleksaC/hadolint-py rev: v2.12.0.3 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index a0c3bb8ee..5debd43b3 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -5,7 +5,7 @@ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, +identity and expression, level of experience, education, socioeconomic status, nationality, personal appearance, race, religion, or sexual identity and orientation. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 222984113..a7375000b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ If you want to implement something big: ## Python -Paperless supports python 3.9 - 3.11. We format Python code with [Black](https://github.com/psf/black). +Paperless supports python 3.9 - 3.11 at this time. We format Python code with [ruff](https://docs.astral.sh/ruff/formatter/). ## Branches diff --git a/Dockerfile b/Dockerfile index d13f1b9ac..bb32a9817 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN set -eux \ # Comments: # - pipenv dependencies are not left in the final image # - pipenv can't touch the final image somehow -FROM --platform=$BUILDPLATFORM docker.io/python:3.11-alpine as pipenv-base +FROM --platform=$BUILDPLATFORM docker.io/python:3.11-alpine AS pipenv-base WORKDIR /usr/src/pipenv @@ -29,7 +29,7 @@ COPY Pipfile* ./ RUN set -eux \ && echo "Installing pipenv" \ - && python3 -m pip install --no-cache-dir --upgrade pipenv==2023.12.1 \ + && python3 -m pip install --no-cache-dir --upgrade pipenv==2024.0.1 \ && echo "Generating requirement.txt" \ && pipenv requirements > requirements.txt @@ -37,7 +37,7 @@ RUN set -eux \ # Purpose: The final image # Comments: # - Don't leave anything extra in here -FROM docker.io/python:3.11-slim-bookworm as main-app +FROM docker.io/python:3.11-slim-bookworm AS main-app LABEL org.opencontainers.image.authors="paperless-ngx team " LABEL org.opencontainers.image.documentation="https://docs.paperless-ngx.com/" @@ -53,7 +53,7 @@ ARG TARGETARCH # Can be workflow provided, defaults set for manual building ARG JBIG2ENC_VERSION=0.29 ARG QPDF_VERSION=11.9.0 -ARG GS_VERSION=10.02.1 +ARG GS_VERSION=10.03.1 # Set Python environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -83,7 +83,6 @@ ARG RUNTIME_PACKAGES="\ icc-profiles-free \ imagemagick \ # PostgreSQL - libpq5 \ postgresql-client \ # MySQL / MariaDB mariadb-client \ @@ -129,17 +128,17 @@ RUN set -eux \ && dpkg --install ./qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ && echo "Installing Ghostscript ${GS_VERSION}" \ && curl --fail --silent --show-error --location \ - --output libgs10_${GS_VERSION}.dfsg-2_${TARGETARCH}.deb \ + --output libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ && curl --fail --silent --show-error --location \ - --output ghostscript_${GS_VERSION}.dfsg-2_${TARGETARCH}.deb \ + --output ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ && curl --fail --silent --show-error --location \ - --output libgs10-common_${GS_VERSION}.dfsg-2_all.deb \ + --output libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg-2_all.deb \ - && dpkg --install ./libgs10_${GS_VERSION}.dfsg-2_${TARGETARCH}.deb \ - && dpkg --install ./ghostscript_${GS_VERSION}.dfsg-2_${TARGETARCH}.deb \ + && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ + && dpkg --install ./libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && dpkg --install ./ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ && echo "Installing jbig2enc" \ && curl --fail --silent --show-error --location \ --output jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ @@ -223,7 +222,13 @@ RUN --mount=type=cache,target=/root/.cache/pip/,id=pip-cache \ && apt-get install --yes --quiet --no-install-recommends ${BUILD_PACKAGES} \ && python3 -m pip install --no-cache-dir --upgrade wheel \ && echo "Installing Python requirements" \ - && python3 -m pip install --default-timeout=1000 --requirement requirements.txt \ + && curl --fail --silent --show-error --location \ + --output psycopg_c-3.1.19-cp311-cp311-linux_x86_64.whl \ + https://github.com/paperless-ngx/builder/releases/download/psycopg-3.1.19/psycopg_c-3.1.19-cp311-cp311-linux_x86_64.whl \ + && curl --fail --silent --show-error --location \ + --output psycopg_c-3.1.19-cp311-cp311-linux_aarch64.whl \ + https://github.com/paperless-ngx/builder/releases/download/psycopg-3.1.19/psycopg_c-3.1.19-cp311-cp311-linux_aarch64.whl \ + && python3 -m pip install --default-timeout=1000 --find-links . --requirement requirements.txt \ && echo "Patching whitenoise for compression speedup" \ && curl --fail --silent --show-error --location --output 484.patch https://github.com/evansd/whitenoise/pull/484.patch \ && patch -d /usr/local/lib/python3.11/site-packages --verbose -p2 < 484.patch \ @@ -236,6 +241,7 @@ RUN --mount=type=cache,target=/root/.cache/pip/,id=pip-cache \ && apt-get --yes purge ${BUILD_PACKAGES} \ && apt-get --yes autoremove --purge \ && apt-get clean --yes \ + && rm --recursive --force --verbose *.whl \ && rm --recursive --force --verbose /var/lib/apt/lists/* \ && rm --recursive --force --verbose /tmp/* \ && rm --recursive --force --verbose /var/tmp/* \ diff --git a/Pipfile b/Pipfile index f3e465061..948e22273 100644 --- a/Pipfile +++ b/Pipfile @@ -7,7 +7,7 @@ name = "pypi" dateparser = "~=1.2" # WARNING: django does not use semver. # Only patch versions are guaranteed to not introduce breaking changes. -django = "~=4.2.11" +django = "~=4.2.13" django-allauth = {extras = ["socialaccount"], version = "*"} django-auditlog = "*" django-celery-results = "*" @@ -17,6 +17,7 @@ django-extensions = "*" django-filter = "~=24.2" django-guardian = "*" django-multiselectfield = "*" +django-soft-delete = "*" djangorestframework = "==3.14.0" djangorestframework-guardian = "*" drf-writable-nested = "*" @@ -37,7 +38,7 @@ nltk = "*" ocrmypdf = "~=15.4" pathvalidate = "*" pdf2image = "*" -psycopg2 = "*" +psycopg = {version = "*", extras = ["c"]} python-dateutil = "*" python-dotenv = "*" python-gnupg = "*" @@ -46,23 +47,19 @@ python-magic = "*" pyzbar = "*" rapidfuzz = "*" redis = {extras = ["hiredis"], version = "*"} -scikit-learn = "~=1.4" +scikit-learn = "~=1.5" setproctitle = "*" tika-client = "*" tqdm = "*" +# See https://github.com/paperless-ngx/paperless-ngx/issues/5494 uvicorn = {extras = ["standard"], version = "==0.25.0"} watchdog = "~=4.0" whitenoise = "~=6.6" whoosh="~=2.7" zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"} -# Locked for issues -# See https://github.com/paperless-ngx/paperless-ngx/discussions/6610 & https://bugs.launchpad.net/lxml/+bug/2059910 -lxml = "==5.1.1" - [dev-packages] # Linting -black = "*" pre-commit = "*" ruff = "*" # Testing diff --git a/Pipfile.lock b/Pipfile.lock index 0062d6520..19fa61a23 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "4e53ee87cb715982b75fe720a69463af4f249b755691fcbc05bec8fe70e51330" + "sha256": "a5c03d1dd7ee0de6c18781d4cdfbd148b9eb6e8caf9eb52263f22b5ffe30bbf3" }, "pipfile-spec": 6, "requires": {}, @@ -24,11 +24,11 @@ }, "anyio": { "hashes": [ - "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", - "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", + "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7" ], "markers": "python_version >= '3.8'", - "version": "==4.3.0" + "version": "==4.4.0" }, "asgiref": { "hashes": [ @@ -164,11 +164,11 @@ }, "certifi": { "hashes": [ - "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", - "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", + "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" ], "markers": "python_version >= '3.6'", - "version": "==2024.2.2" + "version": "==2024.6.2" }, "cffi": { "hashes": [ @@ -392,41 +392,41 @@ }, "cryptography": { "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" ], "markers": "python_version >= '3.7'", - "version": "==42.0.5" + "version": "==42.0.7" }, "dateparser": { "hashes": [ @@ -454,22 +454,22 @@ }, "django": { "hashes": [ - "sha256:6e6ff3db2d8dd0c986b4eec8554c8e4f919b5c1ff62a5b4390c17aff2ed6e5c4", - "sha256:ddc24a0a8280a0430baa37aff11f28574720af05888c62b7cfe71d219f4599d3" + "sha256:837e3cf1f6c31347a1396a3f6b65688f2b4bb4a11c580dcb628b5afe527b68a5", + "sha256:a17fcba2aad3fc7d46fdb23215095dbbd64e6174bf4589171e732b18b07e426a" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.2.11" + "version": "==4.2.13" }, "django-allauth": { "extras": [ "socialaccount" ], "hashes": [ - "sha256:6f33e86e42fb78ec2885ee905f337b87c46465ae7fe162c4959dcac81d47e2ad" + "sha256:2374164c468a309e6badf70bc3405136df6036f24a20a13387f2a063066bdaa9" ], "markers": "python_version >= '3.7'", - "version": "==0.62.1" + "version": "==0.63.3" }, "django-auditlog": { "hashes": [ @@ -540,6 +540,15 @@ "index": "pypi", "version": "==0.1.12" }, + "django-soft-delete": { + "hashes": [ + "sha256:443c00a54c06d236ff8806c3260243d775cc536581d7377c2785080b1041ce1d", + "sha256:7cb4524231763a70ad79cfccd49d001b7e5fa666ec897cc044d897dd73e0146e" + ], + "index": "pypi", + "markers": "python_version >= '3.6'", + "version": "==1.0.13" + }, "djangorestframework": { "hashes": [ "sha256:579a333e6256b09489cbe0a067e66abe55c6595d8926be6b99423786334350c8", @@ -575,12 +584,12 @@ }, "filelock": { "hashes": [ - "sha256:43339835842f110ca7ae60f1e1c160714c5a6afd15a2873419ab185334975c0f", - "sha256:6ea72da3be9b8c82afd3edcf99f2fffbb5076335a5ae4d03248bb5b6c3eae78a" + "sha256:58a2549afdf9e02e10720eaa4d4470f56386d7a6f72edd7d0596337af8ed7ad8", + "sha256:71b3102950e91dfc1bb4209b64be4dc8854f40e5f534428d8684f953ac847fac" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.14.0" + "version": "==3.15.1" }, "flower": { "hashes": [ @@ -886,83 +895,151 @@ }, "lxml": { "hashes": [ - "sha256:036b36c48cd775e4fd2084b34ae62ffeefa7a01f955f5a5b816f9257c308cfc0", - "sha256:04ef231dde88294a5499f61a74cdc42af97d8d5ecec1b0a645d1c7d436942789", - "sha256:071e5123d1eca861708c4be5b54e4d88923fa33fab3aa02722e907518b07071c", - "sha256:0e46181d15fae102c53621bed9356b7a599a1e837b978c934a350dd00842b1d9", - "sha256:13b73d78a8023203722cf98e9ea0b222da83110d1d5ef437ef8782a7755b4586", - "sha256:1528b37e83c3aeecb438e76e5be6279b353275560125a9c3f4d74642c5f110f9", - "sha256:161838cb95c97e8d76d01e544a3570b52ab6b863f4897a90e1f073bb110a75ba", - "sha256:19c6bc7476eeac4598ff925ae98597610109e21af4cd7ab1e060efcfc4b1c6e2", - "sha256:1b0611bba10d6f5467b86673e8f6bba4de0d00f7d111eea843bc872abfe11b5c", - "sha256:1d0270d33fbde6e1c6758ff58e2e284144f5331aa05dfe7f44ceafdf4e9d31aa", - "sha256:1d380f183bd03ab827899753ea96dabe27d2025eb0bfd4f2ac0eee4afa0f351d", - "sha256:20cd17eb21f5ae54da96791c49e1fbd3327bf66b2c00556cdf8d0552c2270f92", - "sha256:26974096654241df08a30dc2eb0e139c1ad5653660aa4b2ced66000230e96c14", - "sha256:2992480a25434d2df31413136ef87effab14d43b07f1f54c5012c4f6c7530144", - "sha256:29b2771b4eec4e85063f10294facdd9829d010e6cc9668040d0cf936dc56733a", - "sha256:2de00750318ae6869b9dfa6429a4f82b8ecad043049414547474d09db549c2ee", - "sha256:318847c165063549c8fda6b162a0d068689b10deb825cb3859caef69fddaaaff", - "sha256:3641bc124b037921de4220538a5ebb52354fd2799fc2bbfb335d28096063c7d6", - "sha256:3a6e9b34f59c9755aa279c652e1c48c333c665d05a88afcd8e5ff0bde86f3b14", - "sha256:3c5940f188189956ccb3d1adb413001ada79f2d2b81087d2612a0cc4a1197eed", - "sha256:3da8db291568c27b2bb248dcfc8838ca3149f373a24e204bcd1c2c89e2813d14", - "sha256:42a8aa957e98bd8b884a8142175ec24ce4ef0a57760e8879f193bfe64b757ca9", - "sha256:43f21b5929185fa4560836942020bb00a0fcdec9f67be98cac1a4b99501757c1", - "sha256:48dd28b9f410329de709a4bb6169c58f2cd8bff25f5a48d647678ec9b8a40c65", - "sha256:4958c378d9387c45ef8c4859495cf6be76f863e4e3b31494f6ec7f2c48d3b8e3", - "sha256:50007f4e94dc4e38030487a8b6c4af87a2d51ed059c7b74b29e3dd937cb1dfe1", - "sha256:5020b3081030b5cfc8149eee231167aea4ff68df73a610e1d542809e1f11fde7", - "sha256:52358249292bc155af681a9240ec3d944c1195f0124aa10ec4e3635adc1e10a1", - "sha256:55e13a19829dcdbf0c5233062977aeb6daf72e65124909128045976f659164e8", - "sha256:56f1e813ff660d031c77edba90a068d57e47ae93a9e811330fc88946fa68af9a", - "sha256:59ca75cfcf646ff64aa19ca4e7fd2a0fde77268d5a87856525d9e0b69b77d0c4", - "sha256:5bd2595ebe95214446e00a1ab94571f778b126e17736ea222c07505c4e092289", - "sha256:5dcb373720b70aa05419e508265dd86f06886ca0388967f6f024fbc4d551379f", - "sha256:60ceffdca5d637fe8ee95c7f06733a6c9646e07da80997efe3af2d4b4f366e36", - "sha256:666432274881cb2535e71dbe745e08ef10fe25c81fbb1a6b1e3c973177823b0c", - "sha256:68eed33377a9925aed7ba56c8611d50aaa1e45638c07a92b4b4b0a0436cc2dd2", - "sha256:6c49eb5deaed1990fde5b5d80d6800aec1b5fd6113346b5f11068d988f68f2c4", - "sha256:74d0967c6f91eec6fe91159f9e8ccb3720fa0fbf9f462109c7bef62550df397c", - "sha256:77425482e4311d1cff119a2b5ab26c52ec209d2a3d728a54db3223ab91995e20", - "sha256:77842b79b63c83c04dcfe2f045c78e15e4d97c86838eabd2e6518c1ed97e3900", - "sha256:81107c8de3e463052ae8fd05fd31b97c371c7a9ce4a189b8bb5f45b0b3545fb9", - "sha256:8a943826e7a9254eed661a7134fcde3c832a9fecd989d0f47c6e08c7b769cb2c", - "sha256:906966babd374fdfe46e130fc656488003f0d0d63b7cba612aa5a796c8804283", - "sha256:9113fe65a62f834b8e994c8f48e7b2179bf81878c0ec80ad7feba51ab9417663", - "sha256:95a51324a55000c55f4ab79e1f7f1e0bc42b7a24e39633f79542753023a9d4b7", - "sha256:99bcdf665576a26b44c7ce767d76b769a4418b0a13cda8300b26fb7b2647bd5b", - "sha256:9c03f3715c68fc707d9383d56e482d95d198ba07cb3dad4aee9e5a5ca06b2536", - "sha256:9cc30dc3c49ea914fa62ea73b57198b541cf2cd522fcf2b9559f99a24df769bb", - "sha256:a02ed1ebc469734dbfed5b688f709334de19e7a333cba7ae187b17d2b2c1d4ff", - "sha256:a103426e809640a2d985062d2f4b28db2f0fe4469ff72a67cb31fa70613158f1", - "sha256:a305d0469177fd78a0a9aa2231c60218266bb85d4b7955f9b67dab628c9267fd", - "sha256:a76a7b35e7660c74eb3f943c19f5f78c882dceab890cf8017027b6100b79ad8e", - "sha256:a94a97380ad689d751eb0a1e1ccd2a0622c5141771a31abe9a16075f80027e95", - "sha256:acff17e0cd5344677757a152631d8411efac6a84e4476d60123a9b33f5d6c511", - "sha256:adedfb61be862f48907218e3a24bf051fd2ecca53358f3958b0bdb17d7881c20", - "sha256:adff469b7dbfe9f3babc9e4479449ee97085ba70ac492fbe5f0f7217940c6731", - "sha256:aff34295a6c87638a1f1905355cf3a97e4026c45c0cf3bb6ed6bc35b885b4a33", - "sha256:b174885fd2cabd1ad48585296f495e25d607f02db99668c08b2afaceb668e21b", - "sha256:bc6904519dd1f92eb82f7d49814a33bbc444d0b66b1438e76daf3f79ef4aa38f", - "sha256:bd46b5b19ac969de8e87fb3d04414641d12ee489e2ea6cc75344087829b31c63", - "sha256:bf7e57dbe7b3c605e63849d9c8dae246a6ab9002223c57cd3f3dec7c3a0a8e6d", - "sha256:bfbdadc3cfe552331ecb0bbdcabf148d1697c73aa4321151e0e6c1704eeb76a7", - "sha256:c7c1d2f6e9c7a1c4478146ee38d16dbe0eb3be998424bc0f01346c671c38b86d", - "sha256:d1abbf2249467a37da45fb2d7ff37e578dfc9813f142800e58db9da761cb7899", - "sha256:d1f4d37b3f8d2d44493edce3d65ac987127bababd8ae208a6f0d7d260852346e", - "sha256:d26243d994d4077a50056e9008848e5b421be0c6f0fd4e932a9463e1d89fc42b", - "sha256:d55ddc73dec971277b181a6d1a6abdd34f50e4511e1e60f6b4ebe22cbaad05bb", - "sha256:d9358f7268c161dc0a1c3216018f26c04954b5dd47ba6dead79da6598f4725d4", - "sha256:d94a28c16cc430b68c374b37b8bb536ba5f0a4a080be0e1daa8310c44a00a75c", - "sha256:dec3491aa69a91ed07f5e6bc033e2b1a9424447ad5312ee69ac973e94d79083a", - "sha256:f05ab8cea65363d0cc7ce818f42407504b6d94ca885b4cde0270f021e2f4ef61", - "sha256:f1d0824e3ddb969fe1337b1bc45cf0bec8095b342f36903f41a74b7769cc8c73", - "sha256:f8682af96b5ad5093aab9eee5e4ff24cb7a9796c78699d914dd456ebfe7484a6" + "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3", + "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a", + "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0", + "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b", + "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f", + "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6", + "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73", + "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d", + "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad", + "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b", + "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a", + "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5", + "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab", + "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316", + "sha256:1b590b39ef90c6b22ec0be925b211298e810b4856909c8ca60d27ffbca6c12e6", + "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df", + "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca", + "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264", + "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8", + "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f", + "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b", + "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3", + "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5", + "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed", + "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab", + "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5", + "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726", + "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d", + "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632", + "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706", + "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8", + "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472", + "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835", + "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf", + "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db", + "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d", + "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545", + "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9", + "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be", + "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe", + "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905", + "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438", + "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db", + "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776", + "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c", + "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed", + "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd", + "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484", + "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d", + "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6", + "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30", + "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182", + "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61", + "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425", + "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb", + "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1", + "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511", + "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e", + "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207", + "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b", + "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585", + "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56", + "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391", + "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85", + "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147", + "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18", + "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1", + "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa", + "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48", + "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3", + "sha256:7ff762670cada8e05b32bf1e4dc50b140790909caa8303cfddc4d702b71ea184", + "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67", + "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7", + "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34", + "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706", + "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8", + "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c", + "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115", + "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009", + "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466", + "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526", + "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d", + "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525", + "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14", + "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3", + "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0", + "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b", + "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1", + "sha256:a6d2092797b388342c1bc932077ad232f914351932353e2e8706851c870bca1f", + "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf", + "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf", + "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0", + "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b", + "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff", + "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88", + "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2", + "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40", + "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716", + "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2", + "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2", + "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a", + "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734", + "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87", + "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48", + "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36", + "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b", + "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07", + "sha256:c2faf60c583af0d135e853c86ac2735ce178f0e338a3c7f9ae8f622fd2eb788c", + "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573", + "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001", + "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9", + "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3", + "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce", + "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3", + "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04", + "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927", + "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083", + "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d", + "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32", + "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9", + "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f", + "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2", + "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c", + "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d", + "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393", + "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8", + "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6", + "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66", + "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5", + "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97", + "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196", + "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836", + "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae", + "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297", + "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421", + "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6", + "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981", + "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30", + "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30", + "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f", + "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324", + "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b" ], - "index": "pypi", "markers": "python_version >= '3.6'", - "version": "==5.1.1" + "version": "==5.2.2" }, "markdown-it-py": { "hashes": [ @@ -1161,47 +1238,51 @@ }, "pikepdf": { "hashes": [ - "sha256:0597d04a96ce9dd293561884f6e61be094f935e45a9a3321d7815abca05bb65b", - "sha256:07e2ebf51d84a8deefe253278e534ecc396dbbc8a263f97d2340dd583ba0803e", - "sha256:0aa4e037470ed531925e961f23f6f8db7d63ca4d2881729997838e717893756f", - "sha256:1e7711e9564b298e9e31b5fa38f636bfe564bacf91615ceb8d1d43ba7ec68c0d", - "sha256:2253abe1e779c247dd55384a9b2d6c6c0e1784194302a8a72f995cdb7aaebada", - "sha256:23178efa64eeb48d408c95d70e4ec6fe2273e8d0d21c174a224e907b65f657f9", - "sha256:26811dee5d805efcd0370903292789a1ab402e8f2870cd51129640c3cf840d7a", - "sha256:2917c835c1c51a3e5e440ee8acaa6a6a1c029faf6452e0b5f5f638271a05af23", - "sha256:29975cf72ff1b9fb8d93653dd61d4755b829701892449de978fe59f78762d469", - "sha256:2d7fd47b09e99ac47863b13a5fb845efa552f7c56e1572301465348484001341", - "sha256:2fada7e9380b63d12cf4f9ed13cd8f126e8e48a85459330cdbbeb7306e942ae9", - "sha256:34f08c8814f47427f40dce8a81235fd2cb7a741fe311f4cb8d19ea90d75c4c9d", - "sha256:533eafa499c51af38dc0826e47c4096de9ad71d7687472faf52bb58c1d49100c", - "sha256:547f5ccace5e23b6d08017081ed468ce420581c4eb0d2559f458653918e8776c", - "sha256:5df699268690ce2eb727b01ed4c2467121cf4982d8052e949e2f44824898e20a", - "sha256:61fd4d75dc501d06abeb4a6e8a341414d2546c05f7e29790057ebe7fb8c8f303", - "sha256:653aceedb2b3a4cdb579a55aaf78632b434b7cd53e2557b2bc8c8590bfe1d92b", - "sha256:675f35a5e7eacc5280b75f29c9f9ae1a26883076918e458ac4d4c413ef380aee", - "sha256:6d0118c6c6518da2e97dce24ba041cf612f91b73732398639c5194022d18e3a8", - "sha256:7255e74288b910d1aff299eab7085215802a8aedea8356c9f7b93d1c77e9c69a", - "sha256:77a58bf66222bdb1ab32840ac77e1354b0b9733fe06336e4fa3ce54d8acba70c", - "sha256:788cbc5ce7db91883fe4c334c8a9b29f6f7716f62a56551b07a9bbcee5b02388", - "sha256:7d95bcbbd3a89bbe0817f13b46a1a0c31715e78ef8d40e57d0c09931a6bf74b7", - "sha256:97f612783472ffe32a995415d1aac37c95bb8f42dcd6883c6346f3ae11e805a5", - "sha256:97f8b574b3a8e64e06cfa2d682cb4cb9e647676d67395a7d525f89798c42d0d2", - "sha256:9b6e9df1e62b267c0a5b1f0eee715d98990f3977124f242dd5f2d47e8940cc00", - "sha256:9b9094845476d3341df0c1bd3c5fba53c52825f5bef42a3b8d056aa452457f85", - "sha256:9f768ac2006a961b18883091fa3e057e2bc67d22df10d1bafc83c998c27b0474", - "sha256:a4515b0b7ee4f8e08e7e7c9f051997006e81f5386a837048a35454c5c733dff6", - "sha256:a8ba8ed8dc612fc310ce35ccc90f9641fcfb258343ab619e80086089ce8e60bf", - "sha256:afbb6a0350b72f10e5255ca3e4e0045ff137f169154f648fca3429e1487e5849", - "sha256:b481d0418d2ba5736b9744aa2772ba6fc72d4e2fb052e6460a86e999ed9a9573", - "sha256:b6f1079302725fe4779b2679c45e55ccd82a4cbbdf738d5441dbe774bb1b718f", - "sha256:be566b2e0f0a9850aeb66aa7ab484f48603ff3ca66b7a64e7cb7f9de06252d16", - "sha256:bf6e2b293ead4c7a6db11fb1ebfd9d132fecb51c218a7426ece2ffc032e43d5f", - "sha256:cc0d99010209b67eba1c3fb0a5568b1b763e2304211eb6c4b75762d23d54af80", - "sha256:e1012fa4f8e6bcd1906ed0187f2fefc7059b87bbadb62e2f7685dd77d673964e", - "sha256:f656b19c4d436e6f6d272cc952b0386e404402d3eadba49a88240ee0e3ebaca1" + "sha256:088491103d5e167c7906ead59c1b7310bb98a5a74228ca76b1e9c190b3086f03", + "sha256:110c1509e2dfcf3a6375f3012342973d5fc7ea8fe5c4db0a0940c69f1b86d6d3", + "sha256:18534b8b2d9e4d16fa97433e6f0b10dc6eaf8a743608e5313b2a0f6c0ceadd2f", + "sha256:19f5fa063a76cbde5f3e39f785131afdd2336aae7a3b5bb8ae0fbbe377a8c3e3", + "sha256:1e68aa6717d2faaa193aa41f2b00af9e205164a7e852e900019955776f3c62e8", + "sha256:23196e1437acd72dd90989ebd2c21deb39e7602203dd7faad2acf9e12242f02d", + "sha256:2b17d0a0f64cf886bc975458da0e8e5b81ea0c40f1909c5aefa6da550d7cc9db", + "sha256:2ddb0eade682ed0c3a2270db3741dca7a19e85d8d09d9227525d4343a21e084b", + "sha256:36cfa4e415539ee9d9bf389ab5f1a46b351334ad4bac47d978850f7d954a4f7c", + "sha256:3936ba5492bda7fea840f2d17d4f720ce3e7fb8dc30c8d7c72ae6712571642f9", + "sha256:40f37da54bc02f3714c17454e1aee28d02fdc28ea0b7903240eae9d53c360b2b", + "sha256:416c0d3d8a927a5213ed71c5529f98e4c9fef489588e1af434c955a4bb66f5f3", + "sha256:41a71dfd567eeddd9bd43bba99bf2fd48acd2057486e9ed07399f8ab1a19486e", + "sha256:447938e30fa22461da340a0a7adbd3c90c0a7f68051dd1b0b9b7c6f64fb17dfe", + "sha256:47145a7f564b123cc3d0f2a1b72bfe96defb42441534e3ec8697f3e7163398de", + "sha256:4af5c18a2ddbd5f16b0b35f4693edff68cbf69aecf19773b90f12804af4fc6e4", + "sha256:5e2fdfb216f1d03da1b46d683abcf73611a1972f1808e182d07f9362ad28c7b7", + "sha256:6e48a7d120a17961229fe10392158d5a93c60d98261d4b129a4381413b5e7eb1", + "sha256:7be94c2e5ab6621b95e0377ef2e707722419aa478bbf47cc1d83f98c8e6a9fd2", + "sha256:7c19d9d0d3703e35a0d4a75a81208360ae3eaec47b86bf92a0395f5c0a0fabad", + "sha256:81711d03207ae92e4db2300d12e16e19570383c7f62bb75a1d6194fc753655a9", + "sha256:8a3fb77c77d3d93ea14fcb57d5365845cf064009b5125605abd9344a35cd73ae", + "sha256:8f5c8b4ef2f96b3d319c0b2600c21d277cf4d3e4173240ea174b0472d7d39650", + "sha256:979e9a878b222fa1a5cfd37c9b2a49056f51f7ba0bf8e1c2f26f4520d8fd2abf", + "sha256:9ea9d134220cc72d7c60010b9d6ca807369900e477aeede39b69c8fbbae3b51b", + "sha256:a1618ace0625a91ed4841a67ff70b1f8b59bab6389fcbd4c1611352e0b3fc55e", + "sha256:a96f7fc82cde95511d28a9a4e4eb1277a3e600859a7405aabb9692f280e762eb", + "sha256:ac4310b751fb71e136a7bd613a2b4060823423fbe481d968e19c9a3425353346", + "sha256:b124471b1ab5635062fd0586c8c633a1cafb2ddb3168287ec3acce3e23395c9d", + "sha256:b2e18cab189d45457b4a4d2ee1f823be4ccdeff8fafd0150b2a0332863f1a9a6", + "sha256:b794d2ada55062d3a1c1c2cbbe8d6d054e8316547977a7b9a1027e66e14e1e99", + "sha256:b8d374a91d7a1e92f0b3b7e1e5e00cfb0f324562200b991b719e037f5cc6ed54", + "sha256:bcdc0d02a92a727740ef84d2f7512e05ea36657e132674764d303c60f3298a1f", + "sha256:c0851e88c21f13ddce16655e9f0ca9e8d684d3d362b370917d282f70b465aece", + "sha256:cae32c7294caab59f5b14ecc36f1340cb471f19f7199f33997a0bbc102a08b61", + "sha256:d2fd3686ac5dd6a3889459b0fdd86f3254077dc74ce225de20e4c282e4a2d19a", + "sha256:d49cd2bada9cb9f849bc3d5f09b89c3e29e9629d4f234218eb59d749c0b8a4f8", + "sha256:db53bacda92bf80686e962111b3eaf24322880e039ba7452663bea404df625a3", + "sha256:dc45f05a72697199539c985cb07ff216a40bf1eb95a5b42205d1c8808d63e332", + "sha256:e16b1b7b9727b22e51b46240a17ab3c7afef79cff9391d4fe16b3b3f53d434d4", + "sha256:e89f7a00742315198fce5e0c9597ecad5f475bc88129afc07677cdf72a00e3ba", + "sha256:f80d6d40fc6dc17eb4a7ed532a9cffc55d5ad2ee12dd50ccd01c678978ab74b0" ], "markers": "python_version >= '3.8'", - "version": "==8.15.1" + "version": "==9.0.0" }, "pillow": { "hashes": [ @@ -1304,31 +1385,28 @@ }, "prompt-toolkit": { "hashes": [ - "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d", - "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6" + "sha256:07c60ee4ab7b7e90824b61afa840c8f5aad2d46b3e2e10acc33d8ecc94a49089", + "sha256:a29b89160e494e3ea8622b09fa5897610b437884dcdcd054fdc1308883326c2a" ], "markers": "python_full_version >= '3.7.0'", - "version": "==3.0.43" + "version": "==3.0.45" }, - "psycopg2": { - "hashes": [ - "sha256:121081ea2e76729acfb0673ff33755e8703d45e926e416cb59bae3a86c6a4981", - "sha256:38a8dcc6856f569068b47de286b472b7c473ac7977243593a288ebce0dc89516", - "sha256:426f9f29bde126913a20a96ff8ce7d73fd8a216cfb323b1f04da402d452853c3", - "sha256:5e0d98cade4f0e0304d7d6f25bbfbc5bd186e07b38eac65379309c4ca3193efa", - "sha256:7e2dacf8b009a1c1e843b5213a87f7c544b2b042476ed7755be813eaf4e8347a", - "sha256:a7653d00b732afb6fc597e29c50ad28087dcb4fbfb28e86092277a559ae4e693", - "sha256:ade01303ccf7ae12c356a5e10911c9e1c51136003a9a1d92f7aa9d010fb98372", - "sha256:bac58c024c9922c23550af2a581998624d6e02350f4ae9c5f0bc642c633a2d5e", - "sha256:c92811b2d4c9b6ea0285942b2e7cac98a59e166d59c588fe5cfe1eda58e72d59", - "sha256:d1454bde93fb1e224166811694d600e746430c006fbb031ea06ecc2ea41bf156", - "sha256:d735786acc7dd25815e89cc4ad529a43af779db2e25aa7c626de864127e5a024", - "sha256:de80739447af31525feddeb8effd640782cf5998e1a4e9192ebdf829717e3913", - "sha256:ff432630e510709564c01dafdbe996cb552e0b9f3f065eb89bdce5bd31fabf4c" + "psycopg": { + "extras": [ + "c" + ], + "hashes": [ + "sha256:92d7b78ad82426cdcf1a0440678209faa890c6e1721361c2f8901f0dccd62961", + "sha256:dca5e5521c859f6606686432ae1c94e8766d29cc91f2ee595378c510cc5b0731" ], - "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==2.9.9" + "version": "==3.1.19" + }, + "psycopg-c": { + "hashes": [ + "sha256:8e90f53c430e7d661cb3a9298e2761847212ead1b24c5fb058fc9d0fd9616017" + ], + "version": "==3.1.19" }, "pycparser": { "hashes": [ @@ -1474,196 +1552,200 @@ }, "rapidfuzz": { "hashes": [ - "sha256:014ac55b03f4074f903248ded181f3000f4cdbd134e6155cbf643f0eceb4f70f", - "sha256:08d8b49b3a4fb8572e480e73fcddc750da9cbb8696752ee12cca4bf8c8220d52", - "sha256:0bb28ab5300cf974c7eb68ea21125c493e74b35b1129e629533468b2064ae0a2", - "sha256:0c5b8f9a7b177af6ce7c6ad5b95588b4b73e37917711aafa33b2e79ee80fe709", - "sha256:0ca799f882364e69d0872619afb19efa3652b7133c18352e4a3d86a324fb2bb1", - "sha256:0dcb95fde22f98e6d0480db8d6038c45fe2d18a338690e6f9bba9b82323f3469", - "sha256:0e2e106cc66453bb80d2ad9c0044f8287415676df5c8036d737d05d4b9cdbf8e", - "sha256:0e86e39c1c1a0816ceda836e6f7bd3743b930cbc51a43a81bb433b552f203f25", - "sha256:1179dcd3d150a67b8a678cd9c84f3baff7413ff13c9e8fe85e52a16c97e24c9b", - "sha256:11a7ec4676242c8a430509cff42ce98bca2fbe30188a63d0f60fdcbfd7e84970", - "sha256:134b7098ac109834eeea81424b6822f33c4c52bf80b81508295611e7a21be12a", - "sha256:13857f9070600ea1f940749f123b02d0b027afbaa45e72186df0f278915761d0", - "sha256:170822a1b1719f02b58e3dce194c8ad7d4c5b39be38c0fdec603bd19c6f9cf81", - "sha256:182b4e11de928fb4834e8f8b5ecd971b5b10a86fabe8636ab65d3a9b7e0e9ca7", - "sha256:1b1f74997b6d94d66375479fa55f70b1c18e4d865d7afcd13f0785bfd40a9d3c", - "sha256:1d536f8beb8dd82d6efb20fe9f82c2cfab9ffa0384b5d184327e393a4edde91d", - "sha256:2003071aa633477a01509890c895f9ef56cf3f2eaa72c7ec0b567f743c1abcba", - "sha256:2444d8155d9846f206e2079bb355b85f365d9457480b0d71677a112d0a7f7128", - "sha256:28da953eb2ef9ad527e536022da7afff6ace7126cdd6f3e21ac20f8762e76d2c", - "sha256:2a96209f046fe328be30fc43f06e3d4b91f0d5b74e9dcd627dbfd65890fa4a5e", - "sha256:2bc5559b9b94326922c096b30ae2d8e5b40b2e9c2c100c2cc396ad91bcb84d30", - "sha256:2d267d4c982ab7d177e994ab1f31b98ff3814f6791b90d35dda38307b9e7c989", - "sha256:3083512e9bf6ed2bb3d25883922974f55e21ae7f8e9f4e298634691ae1aee583", - "sha256:30f7609da871510583f87484a10820b26555a473a90ab356cdda2f3b4456256c", - "sha256:33cfabcb7fd994938a6a08e641613ce5fe46757832edc789c6a5602e7933d6fa", - "sha256:36bf35df2d6c7d5820da20a6720aee34f67c15cd2daf8cf92e8141995c640c25", - "sha256:3733aede16ea112728ffeafeb29ccc62e095ed8ec816822fa2a82e92e2c08696", - "sha256:3904d0084ab51f82e9f353031554965524f535522a48ec75c30b223eb5a0a488", - "sha256:3a16c48c6df8fb633efbbdea744361025d01d79bca988f884a620e63e782fe5b", - "sha256:3c42a238bf9dd48f4ccec4c6934ac718225b00bb3a438a008c219e7ccb3894c7", - "sha256:3f4a2468432a1db491af6f547fad8f6d55fa03e57265c2f20e5eaceb68c7907e", - "sha256:413ac49bae291d7e226a5c9be65c71b2630b3346bce39268d02cb3290232e4b7", - "sha256:4514980a5d204c076dd5b756960f6b1b7598f030009456e6109d76c4c331d03c", - "sha256:47b7c0840afa724db3b1a070bc6ed5beab73b4e659b1d395023617fc51bf68a2", - "sha256:47d97e28c42f1efb7781993b67c749223f198f6653ef177a0c8f2b1c516efcaf", - "sha256:48105991ff6e4a51c7f754df500baa070270ed3d41784ee0d097549bc9fcb16d", - "sha256:488f74126904db6b1bea545c2f3567ea882099f4c13f46012fe8f4b990c683df", - "sha256:491274080742110427f38a6085bb12dffcaff1eef12dccf9e8758398c7e3957e", - "sha256:4eea3bf72c4fe68e957526ffd6bcbb403a21baa6b3344aaae2d3252313df6199", - "sha256:544b0bf9d17170720809918e9ccd0d482d4a3a6eca35630d8e1459f737f71755", - "sha256:55e2c5076f38fc1dbaacb95fa026a3e409eee6ea5ac4016d44fb30e4cad42b20", - "sha256:5c396562d304e974b4b0d5cd3afc4f92c113ea46a36e6bc62e45333d6aa8837e", - "sha256:623883fb78e692d54ed7c43b09beec52c6685f10a45a7518128e25746667403b", - "sha256:633b9d03fc04abc585c197104b1d0af04b1f1db1abc99f674d871224cd15557a", - "sha256:65d9250a4b0bf86320097306084bc3ca479c8f5491927c170d018787793ebe95", - "sha256:68da1b70458fea5290ec9a169fcffe0c17ff7e5bb3c3257e63d7021a50601a8e", - "sha256:6993d361f28b9ef5f0fa4e79b8541c2f3507be7471b9f9cb403a255e123b31e1", - "sha256:6a7f273906b3c7cc6d63a76e088200805947aa0bc1ada42c6a0e582e19c390d7", - "sha256:6a83128d505cac76ea560bb9afcb3f6986e14e50a6f467db9a31faef4bd9b347", - "sha256:6c1ed63345d1581c39d4446b1a8c8f550709656ce2a3c88c47850b258167f3c2", - "sha256:731269812ea837e0b93d913648e404736407408e33a00b75741e8f27c590caa2", - "sha256:7988363b3a415c5194ce1a68d380629247f8713e669ad81db7548eb156c4f365", - "sha256:7c09f4e87e82a164c9db769474bc61f8c8b677f2aeb0234b8abac73d2ecf9799", - "sha256:849160dc0f128acb343af514ca827278005c1d00148d025e4035e034fc2d8c7f", - "sha256:8e5ff882d3a3d081157ceba7e0ebc7fac775f95b08cbb143accd4cece6043819", - "sha256:905b01a9b633394ff6bb5ebb1c5fd660e0e180c03fcf9d90199cc6ed74b87cf7", - "sha256:9a06a99f1335fe43464d7121bc6540de7cd9c9475ac2025babb373fe7f27846b", - "sha256:9bc0f7e6256a9c668482c41c8a3de5d0aa12e8ca346dcc427b97c7edb82cba48", - "sha256:9d6478957fb35c7844ad08f2442b62ba76c1857a56370781a707eefa4f4981e1", - "sha256:a2de844e0e971d7bd8aa41284627dbeacc90e750b90acfb016836553c7a63192", - "sha256:a365886c42177b2beab475a50ba311b59b04f233ceaebc4c341f6f91a86a78e2", - "sha256:ab872cb57ae97c54ba7c71a9e3c9552beb57cb907c789b726895576d1ea9af6f", - "sha256:ae643220584518cbff8bf2974a0494d3e250763af816b73326a512c86ae782ce", - "sha256:b11e602987bcb4ea22b44178851f27406fca59b0836298d0beb009b504dba266", - "sha256:b1256915f7e7a5cf2c151c9ac44834b37f9bd1c97e8dec6f936884f01b9dfc7d", - "sha256:b182f0fb61f6ac435e416eb7ab330d62efdbf9b63cf0c7fa12d1f57c2eaaf6f3", - "sha256:b33c6d4b3a1190bc0b6c158c3981535f9434e8ed9ffa40cf5586d66c1819fb4b", - "sha256:b9bf90b3d96925cbf8ef44e5ee3cf39ef0c422f12d40f7a497e91febec546650", - "sha256:bd375c4830fee11d502dd93ecadef63c137ae88e1aaa29cc15031fa66d1e0abb", - "sha256:bdd8c15c3a14e409507fdf0c0434ec481d85c6cbeec8bdcd342a8cd1eda03825", - "sha256:c4ef34b2ddbf448f1d644b4ec6475df8bbe5b9d0fee173ff2e87322a151663bd", - "sha256:c56d2efdfaa1c642029f3a7a5bb76085c5531f7a530777be98232d2ce142553c", - "sha256:c74f2da334ce597f31670db574766ddeaee5d9430c2c00e28d0fbb7f76172036", - "sha256:cd2e6e97daf17ebb3254285cf8dd86c60d56d6cf35c67f0f9a557ef26bd66290", - "sha256:ce897b5dafb7fb7587a95fe4d449c1ea0b6d9ac4462fbafefdbbeef6eee4cf6a", - "sha256:d20ab9abc7e19767f1951772a6ab14cb4eddd886493c2da5ee12014596ad253f", - "sha256:d5d5684f54d82d9b0cf0b2701e55a630527a9c3dd5ddcf7a2e726a475ac238f2", - "sha256:dcb523243e988c849cf81220164ec3bbed378a699e595a8914fffe80596dc49f", - "sha256:e2218d62ab63f3c5ad48eced898854d0c2c327a48f0fb02e2288d7e5332a22c8", - "sha256:e33362e98c7899b5f60dcb06ada00acd8673ce0d59aefe9a542701251fd00423", - "sha256:e3f2d1ea7cd57dfcd34821e38b4924c80a31bcf8067201b1ab07386996a9faee", - "sha256:e65b8f7921bf60cbb207c132842a6b45eefef48c4c3b510eb16087d6c08c70af", - "sha256:e721842e6b601ebbeb8cc5e12c75bbdd1d9e9561ea932f2f844c418c31256e82", - "sha256:f81fe99a69ac8ee3fd905e70c62f3af033901aeb60b69317d1d43d547b46e510", - "sha256:f83bd3d01f04061c3660742dc85143a89d49fd23eb31eccbf60ad56c4b955617", - "sha256:fb67cf43ad83cb886cbbbff4df7dcaad7aedf94d64fca31aea0da7d26684283c", - "sha256:fc02157f521af15143fae88f92ef3ddcc4e0cff05c40153a9549dc0fbdb9adb3", - "sha256:fc4e26f592b51f97acf0a3f8dfed95e4d830c6a8fbf359361035df836381ab81", - "sha256:ff08081c49b18ba253a99e6a47f492e6ee8019e19bbb6ddc3ed360cd3ecb2f62", - "sha256:ff8982fc3bd49d55a91569fc8a3feba0de4cef0b391ff9091be546e9df075b81" + "sha256:05ee0696ebf0dfe8f7c17f364d70617616afc7dafe366532730ca34056065b8a", + "sha256:0c34139df09a61b1b557ab65782ada971b4a3bce7081d1b2bee45b0a52231adb", + "sha256:0d055da0e801c71dd74ba81d72d41b2fa32afa182b9fea6b4b199d2ce937450d", + "sha256:119c010e20e561249b99ca2627f769fdc8305b07193f63dbc07bca0a6c27e892", + "sha256:143caf7247449055ecc3c1e874b69e42f403dfc049fc2f3d5f70e1daf21c1318", + "sha256:14c9f268ade4c88cf77ab007ad0fdf63699af071ee69378de89fff7aa3cae134", + "sha256:153f23c03d4917f6a1fc2fb56d279cc6537d1929237ff08ee7429d0e40464a18", + "sha256:15e4158ac4b3fb58108072ec35b8a69165f651ba1c8f43559a36d518dbf9fb3f", + "sha256:17ff7f7eecdb169f9236e3b872c96dbbaf116f7787f4d490abd34b0116e3e9c8", + "sha256:21047f55d674614eb4b0ab34e35c3dc66f36403b9fbfae645199c4a19d4ed447", + "sha256:256e07d3465173b2a91c35715a2277b1ee3ae0b9bbab4e519df6af78570741d0", + "sha256:282d55700a1a3d3a7980746eb2fcd48c9bbc1572ebe0840d0340d548a54d01fe", + "sha256:2bc8391749e5022cd9e514ede5316f86e332ffd3cfceeabdc0b17b7e45198a8c", + "sha256:2c1d3ef3878f871abe6826e386c3d61b5292ef5f7946fe646f4206b85836b5da", + "sha256:35b7286f177e4d8ba1e48b03612f928a3c4bdac78e5651379cec59f95d8651e6", + "sha256:3617d1aa7716c57d120b6adc8f7c989f2d65bc2b0cbd5f9288f1fc7bf469da11", + "sha256:378d1744828e27490a823fc6fe6ebfb98c15228d54826bf4e49e4b76eb5f5579", + "sha256:3bb6546e7b6bed1aefbe24f68a5fb9b891cc5aef61bca6c1a7b1054b7f0359bb", + "sha256:3d8a57261ef7996d5ced7c8cba9189ada3fbeffd1815f70f635e4558d93766cb", + "sha256:3e6d27dad8c990218b8cd4a5c99cbc8834f82bb46ab965a7265d5aa69fc7ced7", + "sha256:41a81a9f311dc83d22661f9b1a1de983b201322df0c4554042ffffd0f2040c37", + "sha256:505d99131afd21529293a9a7b91dfc661b7e889680b95534756134dc1cc2cd86", + "sha256:51fa1ba84653ab480a2e2044e2277bd7f0123d6693051729755addc0d015c44f", + "sha256:5276df395bd8497397197fca2b5c85f052d2e6a66ffc3eb0544dd9664d661f95", + "sha256:53c7f27cdf899e94712972237bda48cfd427646aa6f5d939bf45d084780e4c16", + "sha256:53e06e4b81f552da04940aa41fc556ba39dee5513d1861144300c36c33265b76", + "sha256:5410dc848c947a603792f4f51b904a3331cf1dc60621586bfbe7a6de72da1091", + "sha256:57e7c5bf7b61c7320cfa5dde1e60e678d954ede9bb7da8e763959b2138391401", + "sha256:58c6a4936190c558d5626b79fc9e16497e5df7098589a7e80d8bff68148ff096", + "sha256:5b422c0a6fe139d5447a0766268e68e6a2a8c2611519f894b1f31f0a392b9167", + "sha256:5c7ca5b6050f18fdcacdada2dc5fb7619ff998cd9aba82aed2414eee74ebe6cd", + "sha256:5d0abbacdb06e27ff803d7ae0bd0624020096802758068ebdcab9bd49cf53115", + "sha256:5d0cb272d43e6d3c0dedefdcd9d00007471f77b52d2787a4695e9dd319bb39d2", + "sha256:5d6a210347d6e71234af5c76d55eeb0348b026c9bb98fe7c1cca89bac50fb734", + "sha256:5e2b827258beefbe5d3f958243caa5a44cf46187eff0c20e0b2ab62d1550327a", + "sha256:5e33f779391caedcba2ba3089fb6e8e557feab540e9149a5c3f7fea7a3a7df37", + "sha256:604e0502a39cf8e67fa9ad239394dddad4cdef6d7008fdb037553817d420e108", + "sha256:6073a46f61479a89802e3f04655267caa6c14eb8ac9d81a635a13805f735ebc1", + "sha256:6175682a829c6dea4d35ed707f1dadc16513270ef64436568d03b81ccb6bdb74", + "sha256:65f45be77ec82da32ce5709a362e236ccf801615cc7163b136d1778cf9e31b14", + "sha256:67201c02efc596923ad950519e0b75ceb78d524177ea557134d6567b9ac2c283", + "sha256:754b719a4990735f66653c9e9261dcf52fd4d925597e43d6b9069afcae700d21", + "sha256:77b5c4f3e72924d7845f0e189c304270066d0f49635cf8a3938e122c437e58de", + "sha256:790b0b244f3213581d42baa2fed8875f9ee2b2f9b91f94f100ec80d15b140ba9", + "sha256:802ca2cc8aa6b8b34c6fdafb9e32540c1ba05fca7ad60b3bbd7ec89ed1797a87", + "sha256:8319838fb5b7b5f088d12187d91d152b9386ce3979ed7660daa0ed1bff953791", + "sha256:83ea7ca577d76778250421de61fb55a719e45b841deb769351fc2b1740763050", + "sha256:858ba57c05afd720db8088a8707079e8d024afe4644001fe0dbd26ef7ca74a65", + "sha256:8709918da8a88ad73c9d4dd0ecf24179a4f0ceba0bee21efc6ea21a8b5290349", + "sha256:875b581afb29a7213cf9d98cb0f98df862f1020bce9d9b2e6199b60e78a41d14", + "sha256:87bb8d84cb41446a808c4b5f746e29d8a53499381ed72f6c4e456fe0f81c80a8", + "sha256:8add34061e5cd561c72ed4febb5c15969e7b25bda2bb5102d02afc3abc1f52d0", + "sha256:8f917eaadf5388466a95f6a236f678a1588d231e52eda85374077101842e794e", + "sha256:930b4e6fdb4d914390141a2b99a6f77a52beacf1d06aa4e170cba3a98e24c1bc", + "sha256:93981895602cf5944d89d317ae3b1b4cc684d175a8ae2a80ce5b65615e72ddd0", + "sha256:959a15186d18425d19811bea86a8ffbe19fd48644004d29008e636631420a9b7", + "sha256:964c08481aec2fe574f0062e342924db2c6b321391aeb73d68853ed42420fd6d", + "sha256:a24603dd05fb4e3c09d636b881ce347e5f55f925a6b1b4115527308a323b9f8e", + "sha256:a39890013f6d5b056cc4bfdedc093e322462ece1027a57ef0c636537bdde7531", + "sha256:a4fc7b784cf987dbddc300cef70e09a92ed1bce136f7bb723ea79d7e297fe76d", + "sha256:a56da3aff97cb56fe85d9ca957d1f55dbac7c27da927a86a2a86d8a7e17f80aa", + "sha256:a93250bd8fae996350c251e1752f2c03335bb8a0a5b0c7e910a593849121a435", + "sha256:a96c5225e840f1587f1bac8fa6f67562b38e095341576e82b728a82021f26d62", + "sha256:aca21c0a34adee582775da997a600283e012a608a107398d80a42f9a57ad323d", + "sha256:acbe4b6f1ccd5b90c29d428e849aa4242e51bb6cab0448d5f3c022eb9a25f7b1", + "sha256:ad04a3f5384b82933213bba2459f6424decc2823df40098920856bdee5fd6e88", + "sha256:afe7c72d3f917b066257f7ff48562e5d462d865a25fbcabf40fca303a9fa8d35", + "sha256:b300708c917ce52f6075bdc6e05b07c51a085733650f14b732c087dc26e0aaad", + "sha256:b398ea66e8ed50451bce5997c430197d5e4b06ac4aa74602717f792d8d8d06e2", + "sha256:b3bd0d9632088c63a241f217742b1cf86e2e8ae573e01354775bd5016d12138c", + "sha256:b5bc0fdbf419493163c5c9cb147c5fbe95b8e25844a74a8807dcb1a125e630cf", + "sha256:b770f85eab24034e6ef7df04b2bfd9a45048e24f8a808e903441aa5abde8ecdd", + "sha256:b777cd910ceecd738adc58593d6ed42e73f60ad04ecdb4a841ae410b51c92e0e", + "sha256:b80eb7cbe62348c61d3e67e17057cddfd6defab168863028146e07d5a8b24a89", + "sha256:b8ab0fa653d9225195a8ff924f992f4249c1e6fa0aea563f685e71b81b9fcccf", + "sha256:bc1991b4cde6c9d3c0bbcb83d5581dc7621bec8c666c095c65b4277233265a82", + "sha256:bdb8c5b8e29238ec80727c2ba3b301efd45aa30c6a7001123a6647b8e6f77ea4", + "sha256:c52970f7784518d7c82b07a62a26e345d2de8c2bd8ed4774e13342e4b3ff4200", + "sha256:c6e65a301fcd19fbfbee3a514cc0014ff3f3b254b9fd65886e8a9d6957fb7bca", + "sha256:c8444e921bfc3757c475c4f4d7416a7aa69b2d992d5114fe55af21411187ab0d", + "sha256:cbe93ba1725a8d47d2b9dca6c1f435174859427fbc054d83de52aea5adc65729", + "sha256:cde6b9d9ba5007077ee321ec722fa714ebc0cbd9a32ccf0f4dd3cc3f20952d71", + "sha256:d36447d21b05f90282a6f98c5a33771805f9222e5d0441d03eb8824e33e5bbb4", + "sha256:d861bf326ee7dabc35c532a40384541578cd1ec1e1b7db9f9ecbba56eb76ca22", + "sha256:dc1037507810833646481f5729901a154523f98cbebb1157ba3a821012e16402", + "sha256:dd789100fc852cffac1449f82af0da139d36d84fd9faa4f79fc4140a88778343", + "sha256:de077c468c225d4c18f7188c47d955a16d65f21aab121cbdd98e3e2011002c37", + "sha256:e53ed2e9b32674ce96eed80b3b572db9fd87aae6742941fb8e4705e541d861ce", + "sha256:e6e4b9380ed4758d0cb578b0d1970c3f32dd9e87119378729a5340cb3169f879", + "sha256:efe6e200a75a792d37b960457904c4fce7c928a96ae9e5d21d2bd382fe39066e", + "sha256:f50fed4a9b0c9825ff37cf0bccafd51ff5792090618f7846a7650f21f85579c9", + "sha256:f57e8305c281e8c8bc720515540e0580355100c0a7a541105c6cafc5de71daae", + "sha256:fd84b7f652a5610733400307dc732f57c4a907080bef9520412e6d9b55bc9adc" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.9.0" + "version": "==3.9.3" }, "redis": { "extras": [ "hiredis" ], "hashes": [ - "sha256:7adc2835c7a9b5033b7ad8f8918d09b7344188228809c98df07af226d39dec91", - "sha256:ec31f2ed9675cc54c21ba854cfe0462e6faf1d83c8ce5944709db8a4700b9c61" + "sha256:38473cd7c6389ad3e44a91f4c3eaf6bcb8a9f746007f29bf4fb20824ff0b2197", + "sha256:c0d6d990850c627bbf7be01c5c4cbaadf67b48593e913bb71c9819c30df37eee" ], + "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==5.0.4" + "version": "==5.0.6" }, "regex": { "hashes": [ - "sha256:05d9b6578a22db7dedb4df81451f360395828b04f4513980b6bd7a1412c679cc", - "sha256:08a1749f04fee2811c7617fdd46d2e46d09106fa8f475c884b65c01326eb15c5", - "sha256:0940038bec2fe9e26b203d636c44d31dd8766abc1fe66262da6484bd82461ccf", - "sha256:0a2a512d623f1f2d01d881513af9fc6a7c46e5cfffb7dc50c38ce959f9246c94", - "sha256:0a54a047b607fd2d2d52a05e6ad294602f1e0dec2291152b745870afc47c1397", - "sha256:0dd3f69098511e71880fb00f5815db9ed0ef62c05775395968299cb400aeab82", - "sha256:1031a5e7b048ee371ab3653aad3030ecfad6ee9ecdc85f0242c57751a05b0ac4", - "sha256:108e2dcf0b53a7c4ab8986842a8edcb8ab2e59919a74ff51c296772e8e74d0ae", - "sha256:144a1fc54765f5c5c36d6d4b073299832aa1ec6a746a6452c3ee7b46b3d3b11d", - "sha256:19d6c11bf35a6ad077eb23852827f91c804eeb71ecb85db4ee1386825b9dc4db", - "sha256:1f687a28640f763f23f8a9801fe9e1b37338bb1ca5d564ddd41619458f1f22d1", - "sha256:224803b74aab56aa7be313f92a8d9911dcade37e5f167db62a738d0c85fdac4b", - "sha256:23a412b7b1a7063f81a742463f38821097b6a37ce1e5b89dd8e871d14dbfd86b", - "sha256:25f87ae6b96374db20f180eab083aafe419b194e96e4f282c40191e71980c666", - "sha256:2630ca4e152c221072fd4a56d4622b5ada876f668ecd24d5ab62544ae6793ed6", - "sha256:28e1f28d07220c0f3da0e8fcd5a115bbb53f8b55cecf9bec0c946eb9a059a94c", - "sha256:2b51739ddfd013c6f657b55a508de8b9ea78b56d22b236052c3a85a675102dc6", - "sha256:2cc1b87bba1dd1a898e664a31012725e48af826bf3971e786c53e32e02adae6c", - "sha256:2fef0b38c34ae675fcbb1b5db760d40c3fc3612cfa186e9e50df5782cac02bcd", - "sha256:36f392dc7763fe7924575475736bddf9ab9f7a66b920932d0ea50c2ded2f5636", - "sha256:374f690e1dd0dbdcddea4a5c9bdd97632cf656c69113f7cd6a361f2a67221cb6", - "sha256:3986217ec830c2109875be740531feb8ddafe0dfa49767cdcd072ed7e8927962", - "sha256:39fb166d2196413bead229cd64a2ffd6ec78ebab83fff7d2701103cf9f4dfd26", - "sha256:4290035b169578ffbbfa50d904d26bec16a94526071ebec3dadbebf67a26b25e", - "sha256:43548ad74ea50456e1c68d3c67fff3de64c6edb85bcd511d1136f9b5376fc9d1", - "sha256:44a22ae1cfd82e4ffa2066eb3390777dc79468f866f0625261a93e44cdf6482b", - "sha256:457c2cd5a646dd4ed536c92b535d73548fb8e216ebee602aa9f48e068fc393f3", - "sha256:459226445c7d7454981c4c0ce0ad1a72e1e751c3e417f305722bbcee6697e06a", - "sha256:47af45b6153522733aa6e92543938e97a70ce0900649ba626cf5aad290b737b6", - "sha256:499334ad139557de97cbc4347ee921c0e2b5e9c0f009859e74f3f77918339257", - "sha256:57ba112e5530530fd175ed550373eb263db4ca98b5f00694d73b18b9a02e7185", - "sha256:5ce479ecc068bc2a74cb98dd8dba99e070d1b2f4a8371a7dfe631f85db70fe6e", - "sha256:5dbc1bcc7413eebe5f18196e22804a3be1bfdfc7e2afd415e12c068624d48247", - "sha256:6277d426e2f31bdbacb377d17a7475e32b2d7d1f02faaecc48d8e370c6a3ff31", - "sha256:66372c2a01782c5fe8e04bff4a2a0121a9897e19223d9eab30c54c50b2ebeb7f", - "sha256:670fa596984b08a4a769491cbdf22350431970d0112e03d7e4eeaecaafcd0fec", - "sha256:6f435946b7bf7a1b438b4e6b149b947c837cb23c704e780c19ba3e6855dbbdd3", - "sha256:7413167c507a768eafb5424413c5b2f515c606be5bb4ef8c5dee43925aa5718b", - "sha256:7c3d389e8d76a49923683123730c33e9553063d9041658f23897f0b396b2386f", - "sha256:7d77b6f63f806578c604dca209280e4c54f0fa9a8128bb8d2cc5fb6f99da4150", - "sha256:7e76b9cfbf5ced1aca15a0e5b6f229344d9b3123439ffce552b11faab0114a02", - "sha256:7f3502f03b4da52bbe8ba962621daa846f38489cae5c4a7b5d738f15f6443d17", - "sha256:7fe9739a686dc44733d52d6e4f7b9c77b285e49edf8570754b322bca6b85b4cc", - "sha256:83ab366777ea45d58f72593adf35d36ca911ea8bd838483c1823b883a121b0e4", - "sha256:84077821c85f222362b72fdc44f7a3a13587a013a45cf14534df1cbbdc9a6796", - "sha256:8bb381f777351bd534462f63e1c6afb10a7caa9fa2a421ae22c26e796fe31b1f", - "sha256:92da587eee39a52c91aebea8b850e4e4f095fe5928d415cb7ed656b3460ae79a", - "sha256:9301cc6db4d83d2c0719f7fcda37229691745168bf6ae849bea2e85fc769175d", - "sha256:965fd0cf4694d76f6564896b422724ec7b959ef927a7cb187fc6b3f4e4f59833", - "sha256:99d6a550425cc51c656331af0e2b1651e90eaaa23fb4acde577cf15068e2e20f", - "sha256:99ef6289b62042500d581170d06e17f5353b111a15aa6b25b05b91c6886df8fc", - "sha256:a1409c4eccb6981c7baabc8888d3550df518add6e06fe74fa1d9312c1838652d", - "sha256:a74fcf77d979364f9b69fcf8200849ca29a374973dc193a7317698aa37d8b01c", - "sha256:aaa179975a64790c1f2701ac562b5eeb733946eeb036b5bcca05c8d928a62f10", - "sha256:ac69b394764bb857429b031d29d9604842bc4cbfd964d764b1af1868eeebc4f0", - "sha256:b45d4503de8f4f3dc02f1d28a9b039e5504a02cc18906cfe744c11def942e9eb", - "sha256:b7d893c8cf0e2429b823ef1a1d360a25950ed11f0e2a9df2b5198821832e1947", - "sha256:b8eb28995771c087a73338f695a08c9abfdf723d185e57b97f6175c5051ff1ae", - "sha256:b91d529b47798c016d4b4c1d06cc826ac40d196da54f0de3c519f5a297c5076a", - "sha256:bc365ce25f6c7c5ed70e4bc674f9137f52b7dd6a125037f9132a7be52b8a252f", - "sha256:bf29304a8011feb58913c382902fde3395957a47645bf848eea695839aa101b7", - "sha256:c06bf3f38f0707592898428636cbb75d0a846651b053a1cf748763e3063a6925", - "sha256:c77d10ec3c1cf328b2f501ca32583625987ea0f23a0c2a49b37a39ee5c4c4630", - "sha256:cd196d056b40af073d95a2879678585f0b74ad35190fac04ca67954c582c6b61", - "sha256:d7a353ebfa7154c871a35caca7bfd8f9e18666829a1dc187115b80e35a29393e", - "sha256:d84308f097d7a513359757c69707ad339da799e53b7393819ec2ea36bc4beb58", - "sha256:dd7ef715ccb8040954d44cfeff17e6b8e9f79c8019daae2fd30a8806ef5435c0", - "sha256:e672cf9caaf669053121f1766d659a8813bd547edef6e009205378faf45c67b8", - "sha256:ecc6148228c9ae25ce403eade13a0961de1cb016bdb35c6eafd8e7b87ad028b1", - "sha256:f1c5742c31ba7d72f2dedf7968998730664b45e38827637e0f04a2ac7de2f5f1", - "sha256:f1d6e4b7b2ae3a6a9df53efbf199e4bfcff0959dbdb5fd9ced34d4407348e39a", - "sha256:f2fc053228a6bd3a17a9b0a3f15c3ab3cf95727b00557e92e1cfe094b88cc662", - "sha256:f57515750d07e14743db55d59759893fdb21d2668f39e549a7d6cad5d70f9fea", - "sha256:f85151ec5a232335f1be022b09fbbe459042ea1951d8a48fef251223fc67eee1", - "sha256:fb0315a2b26fde4005a7c401707c5352df274460f2f85b209cf6024271373013", - "sha256:fc0916c4295c64d6890a46e02d4482bb5ccf33bf1a824c0eaa9e83b148291f90", - "sha256:fd24fd140b69f0b0bcc9165c397e9b2e89ecbeda83303abf2a072609f60239e2", - "sha256:fdae0120cddc839eb8e3c15faa8ad541cc6d906d3eb24d82fb041cfe2807bc1e", - "sha256:fe00f4fe11c8a521b173e6324d862ee7ee3412bf7107570c9b564fe1119b56fb" + "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649", + "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35", + "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb", + "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68", + "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5", + "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133", + "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0", + "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d", + "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da", + "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f", + "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d", + "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53", + "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa", + "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a", + "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890", + "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67", + "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c", + "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2", + "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced", + "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741", + "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f", + "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa", + "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf", + "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4", + "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5", + "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2", + "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384", + "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7", + "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014", + "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704", + "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5", + "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2", + "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49", + "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1", + "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694", + "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629", + "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6", + "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435", + "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c", + "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835", + "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e", + "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201", + "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62", + "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5", + "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16", + "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f", + "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1", + "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f", + "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f", + "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145", + "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3", + "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed", + "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143", + "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca", + "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9", + "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa", + "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850", + "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80", + "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe", + "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656", + "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388", + "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1", + "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294", + "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3", + "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d", + "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b", + "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40", + "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600", + "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c", + "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569", + "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456", + "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9", + "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb", + "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e", + "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f", + "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d", + "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a", + "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a", + "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796" ], "markers": "python_version >= '3.8'", - "version": "==2024.4.28" + "version": "==2024.5.15" }, "reportlab": { "hashes": [ @@ -1675,10 +1757,11 @@ }, "requests": { "hashes": [ - "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", - "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" ], - "version": "==2.31.0" + "markers": "python_version >= '3.8'", + "version": "==2.32.3" }, "requests-oauthlib": { "hashes": [ @@ -1697,62 +1780,62 @@ }, "scikit-learn": { "hashes": [ - "sha256:1d0b25d9c651fd050555aadd57431b53d4cf664e749069da77f3d52c5ad14b3b", - "sha256:36f0ea5d0f693cb247a073d21a4123bdf4172e470e6d163c12b74cbb1536cf38", - "sha256:426d258fddac674fdf33f3cb2d54d26f49406e2599dbf9a32b4d1696091d4256", - "sha256:44c62f2b124848a28fd695db5bc4da019287abf390bfce602ddc8aa1ec186aae", - "sha256:45dee87ac5309bb82e3ea633955030df9bbcb8d2cdb30383c6cd483691c546cc", - "sha256:49d64ef6cb8c093d883e5a36c4766548d974898d378e395ba41a806d0e824db8", - "sha256:5460a1a5b043ae5ae4596b3126a4ec33ccba1b51e7ca2c5d36dac2169f62ab1d", - "sha256:5cd7b524115499b18b63f0c96f4224eb885564937a0b3477531b2b63ce331904", - "sha256:671e2f0c3f2c15409dae4f282a3a619601fa824d2c820e5b608d9d775f91780c", - "sha256:68b8404841f944a4a1459b07198fa2edd41a82f189b44f3e1d55c104dbc2e40c", - "sha256:81bf5d8bbe87643103334032dd82f7419bc8c8d02a763643a6b9a5c7288c5054", - "sha256:8539a41b3d6d1af82eb629f9c57f37428ff1481c1e34dddb3b9d7af8ede67ac5", - "sha256:87440e2e188c87db80ea4023440923dccbd56fbc2d557b18ced00fef79da0727", - "sha256:90378e1747949f90c8f385898fff35d73193dfcaec3dd75d6b542f90c4e89755", - "sha256:b0203c368058ab92efc6168a1507d388d41469c873e96ec220ca8e74079bf62e", - "sha256:c97a50b05c194be9146d61fe87dbf8eac62b203d9e87a3ccc6ae9aed2dfaf361", - "sha256:d36d0bc983336bbc1be22f9b686b50c964f593c8a9a913a792442af9bf4f5e68", - "sha256:d762070980c17ba3e9a4a1e043ba0518ce4c55152032f1af0ca6f39b376b5928", - "sha256:d9993d5e78a8148b1d0fdf5b15ed92452af5581734129998c26f481c46586d68", - "sha256:daa1c471d95bad080c6e44b4946c9390a4842adc3082572c20e4f8884e39e959", - "sha256:ff4effe5a1d4e8fed260a83a163f7dbf4f6087b54528d8880bab1d1377bd78be" + "sha256:057b991ac64b3e75c9c04b5f9395eaf19a6179244c089afdebaad98264bff37c", + "sha256:118a8d229a41158c9f90093e46b3737120a165181a1b58c03461447aa4657415", + "sha256:12e40ac48555e6b551f0a0a5743cc94cc5a765c9513fe708e01f0aa001da2801", + "sha256:174beb56e3e881c90424e21f576fa69c4ffcf5174632a79ab4461c4c960315ac", + "sha256:1b94d6440603752b27842eda97f6395f570941857456c606eb1d638efdb38184", + "sha256:1f77547165c00625551e5c250cefa3f03f2fc92c5e18668abd90bfc4be2e0bff", + "sha256:261fe334ca48f09ed64b8fae13f9b46cc43ac5f580c4a605cbb0a517456c8f71", + "sha256:2a65af2d8a6cce4e163a7951a4cfbfa7fceb2d5c013a4b593686c7f16445cf9d", + "sha256:2c75ea812cd83b1385bbfa94ae971f0d80adb338a9523f6bbcb5e0b0381151d4", + "sha256:40fb7d4a9a2db07e6e0cae4dc7bdbb8fada17043bac24104d8165e10e4cff1a2", + "sha256:460806030c666addee1f074788b3978329a5bfdc9b7d63e7aad3f6d45c67a210", + "sha256:47132440050b1c5beb95f8ba0b2402bbd9057ce96ec0ba86f2f445dd4f34df67", + "sha256:4c0c56c3005f2ec1db3787aeaabefa96256580678cec783986836fc64f8ff622", + "sha256:789e3db01c750ed6d496fa2db7d50637857b451e57bcae863bff707c1247bef7", + "sha256:855fc5fa8ed9e4f08291203af3d3e5fbdc4737bd617a371559aaa2088166046e", + "sha256:a03b09f9f7f09ffe8c5efffe2e9de1196c696d811be6798ad5eddf323c6f4d40", + "sha256:a3a10e1d9e834e84d05e468ec501a356226338778769317ee0b84043c0d8fb06", + "sha256:a90c5da84829a0b9b4bf00daf62754b2be741e66b5946911f5bdfaa869fcedd6", + "sha256:d82c2e573f0f2f2f0be897e7a31fcf4e73869247738ab8c3ce7245549af58ab8", + "sha256:df8ccabbf583315f13160a4bb06037bde99ea7d8211a69787a6b7c5d4ebb6fc3", + "sha256:f405c4dae288f5f6553b10c4ac9ea7754d5180ec11e296464adb5d6ac68b6ef5" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==1.4.2" + "version": "==1.5.0" }, "scipy": { "hashes": [ - "sha256:05f1432ba070e90d42d7fd836462c50bf98bd08bed0aa616c359eed8a04e3922", - "sha256:09c74543c4fbeb67af6ce457f6a6a28e5d3739a87f62412e4a16e46f164f0ae5", - "sha256:0fbcf8abaf5aa2dc8d6400566c1a727aed338b5fe880cde64907596a89d576fa", - "sha256:109d391d720fcebf2fbe008621952b08e52907cf4c8c7efc7376822151820820", - "sha256:1d2f7bb14c178f8b13ebae93f67e42b0a6b0fc50eba1cd8021c9b6e08e8fb1cd", - "sha256:1e7626dfd91cdea5714f343ce1176b6c4745155d234f1033584154f60ef1ff42", - "sha256:22789b56a999265431c417d462e5b7f2b487e831ca7bef5edeb56efe4c93f86e", - "sha256:28e286bf9ac422d6beb559bc61312c348ca9b0f0dae0d7c5afde7f722d6ea13d", - "sha256:33fde20efc380bd23a78a4d26d59fc8704e9b5fd9b08841693eb46716ba13d86", - "sha256:45c08bec71d3546d606989ba6e7daa6f0992918171e2a6f7fbedfa7361c2de1e", - "sha256:4dca18c3ffee287ddd3bc8f1dabaf45f5305c5afc9f8ab9cbfab855e70b2df5c", - "sha256:5407708195cb38d70fd2d6bb04b1b9dd5c92297d86e9f9daae1576bd9e06f602", - "sha256:58569af537ea29d3f78e5abd18398459f195546bb3be23d16677fb26616cc11e", - "sha256:5e4a756355522eb60fcd61f8372ac2549073c8788f6114449b37e9e8104f15a5", - "sha256:6bf9fe63e7a4bf01d3645b13ff2aa6dea023d38993f42aaac81a18b1bda7a82a", - "sha256:8930ae3ea371d6b91c203b1032b9600d69c568e537b7988a3073dfe4d4774f21", - "sha256:9ff7dad5d24a8045d836671e082a490848e8639cabb3dbdacb29f943a678683d", - "sha256:a2f471de4d01200718b2b8927f7d76b5d9bde18047ea0fa8bd15c5ba3f26a1d6", - "sha256:ac38c4c92951ac0f729c4c48c9e13eb3675d9986cc0c83943784d7390d540c78", - "sha256:b2a3ff461ec4756b7e8e42e1c681077349a038f0686132d623fa404c0bee2551", - "sha256:b5acd8e1dbd8dbe38d0004b1497019b2dbbc3d70691e65d69615f8a7292865d7", - "sha256:b8434f6f3fa49f631fae84afee424e2483289dfc30a47755b4b4e6b07b2633a4", - "sha256:ba419578ab343a4e0a77c0ef82f088238a93eef141b2b8017e46149776dfad4d", - "sha256:d0de696f589681c2802f9090fff730c218f7c51ff49bf252b6a97ec4a5d19e8b", - "sha256:dcbb9ea49b0167de4167c40eeee6e167caeef11effb0670b554d10b1e693a8b9" + "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", + "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", + "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", + "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", + "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", + "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", + "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", + "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", + "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", + "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", + "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", + "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", + "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", + "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", + "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", + "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", + "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", + "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", + "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", + "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", + "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", + "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", + "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", + "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", + "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f" ], "markers": "python_version >= '3.9'", - "version": "==1.13.0" + "version": "==1.13.1" }, "setproctitle": { "hashes": [ @@ -1892,20 +1975,21 @@ }, "tornado": { "hashes": [ - "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0", - "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63", - "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263", - "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052", - "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f", - "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee", - "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78", - "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579", - "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212", - "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e", - "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2" + "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8", + "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f", + "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4", + "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3", + "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14", + "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842", + "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9", + "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698", + "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7", + "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d", + "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4" ], + "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==6.4" + "version": "==6.4.1" }, "tqdm": { "hashes": [ @@ -1918,11 +2002,11 @@ }, "typing-extensions": { "hashes": [ - "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", - "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" ], "markers": "python_version < '3.11'", - "version": "==4.11.0" + "version": "==4.12.2" }, "tzdata": { "hashes": [ @@ -1942,11 +2026,12 @@ }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", + "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168" ], + "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.2" }, "uvicorn": { "extras": [ @@ -2005,119 +2090,122 @@ }, "watchdog": { "hashes": [ - "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257", - "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca", - "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b", - "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85", - "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b", - "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19", - "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50", - "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92", - "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269", - "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f", - "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c", - "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b", - "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87", - "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b", - "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b", - "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8", - "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c", - "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3", - "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7", - "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605", - "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935", - "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b", - "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927", - "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101", - "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07", - "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec", - "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4", - "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245", - "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d" + "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7", + "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767", + "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175", + "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459", + "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5", + "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429", + "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6", + "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d", + "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7", + "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28", + "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235", + "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57", + "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a", + "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5", + "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709", + "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee", + "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84", + "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd", + "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba", + "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db", + "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682", + "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35", + "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d", + "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645", + "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253", + "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193", + "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b", + "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44", + "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b", + "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625", + "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e", + "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.0.0" + "version": "==4.0.1" }, "watchfiles": { "hashes": [ - "sha256:02b73130687bc3f6bb79d8a170959042eb56eb3a42df3671c79b428cd73f17cc", - "sha256:02d91cbac553a3ad141db016e3350b03184deaafeba09b9d6439826ee594b365", - "sha256:06247538e8253975bdb328e7683f8515ff5ff041f43be6c40bff62d989b7d0b0", - "sha256:08dca260e85ffae975448e344834d765983237ad6dc308231aa16e7933db763e", - "sha256:0d9ac347653ebd95839a7c607608703b20bc07e577e870d824fa4801bc1cb124", - "sha256:0dd5fad9b9c0dd89904bbdea978ce89a2b692a7ee8a0ce19b940e538c88a809c", - "sha256:11cd0c3100e2233e9c53106265da31d574355c288e15259c0d40a4405cbae317", - "sha256:18722b50783b5e30a18a8a5db3006bab146d2b705c92eb9a94f78c72beb94094", - "sha256:18d5b4da8cf3e41895b34e8c37d13c9ed294954907929aacd95153508d5d89d7", - "sha256:1ad7247d79f9f55bb25ab1778fd47f32d70cf36053941f07de0b7c4e96b5d235", - "sha256:1b8d1eae0f65441963d805f766c7e9cd092f91e0c600c820c764a4ff71a0764c", - "sha256:1bd467213195e76f838caf2c28cd65e58302d0254e636e7c0fca81efa4a2e62c", - "sha256:1c9198c989f47898b2c22201756f73249de3748e0fc9de44adaf54a8b259cc0c", - "sha256:1fd9a5205139f3c6bb60d11f6072e0552f0a20b712c85f43d42342d162be1235", - "sha256:214cee7f9e09150d4fb42e24919a1e74d8c9b8a9306ed1474ecaddcd5479c293", - "sha256:27b4035013f1ea49c6c0b42d983133b136637a527e48c132d368eb19bf1ac6aa", - "sha256:3a23092a992e61c3a6a70f350a56db7197242f3490da9c87b500f389b2d01eef", - "sha256:3ad692bc7792be8c32918c699638b660c0de078a6cbe464c46e1340dadb94c19", - "sha256:3ccceb50c611c433145502735e0370877cced72a6c70fd2410238bcbc7fe51d8", - "sha256:3d0f32ebfaa9c6011f8454994f86108c2eb9c79b8b7de00b36d558cadcedaa3d", - "sha256:3f92944efc564867bbf841c823c8b71bb0be75e06b8ce45c084b46411475a915", - "sha256:40bca549fdc929b470dd1dbfcb47b3295cb46a6d2c90e50588b0a1b3bd98f429", - "sha256:43babacef21c519bc6631c5fce2a61eccdfc011b4bcb9047255e9620732c8097", - "sha256:4566006aa44cb0d21b8ab53baf4b9c667a0ed23efe4aaad8c227bfba0bf15cbe", - "sha256:49f56e6ecc2503e7dbe233fa328b2be1a7797d31548e7a193237dcdf1ad0eee0", - "sha256:4c48a10d17571d1275701e14a601e36959ffada3add8cdbc9e5061a6e3579a5d", - "sha256:4ea10a29aa5de67de02256a28d1bf53d21322295cb00bd2d57fcd19b850ebd99", - "sha256:511f0b034120cd1989932bf1e9081aa9fb00f1f949fbd2d9cab6264916ae89b1", - "sha256:51ddac60b96a42c15d24fbdc7a4bfcd02b5a29c047b7f8bf63d3f6f5a860949a", - "sha256:57d430f5fb63fea141ab71ca9c064e80de3a20b427ca2febcbfcef70ff0ce895", - "sha256:59137c0c6826bd56c710d1d2bda81553b5e6b7c84d5a676747d80caf0409ad94", - "sha256:5a03651352fc20975ee2a707cd2d74a386cd303cc688f407296064ad1e6d1562", - "sha256:5eb86c6acb498208e7663ca22dbe68ca2cf42ab5bf1c776670a50919a56e64ab", - "sha256:642d66b75eda909fd1112d35c53816d59789a4b38c141a96d62f50a3ef9b3360", - "sha256:6674b00b9756b0af620aa2a3346b01f8e2a3dc729d25617e1b89cf6af4a54eb1", - "sha256:668c265d90de8ae914f860d3eeb164534ba2e836811f91fecc7050416ee70aa7", - "sha256:66fac0c238ab9a2e72d026b5fb91cb902c146202bbd29a9a1a44e8db7b710b6f", - "sha256:6c107ea3cf2bd07199d66f156e3ea756d1b84dfd43b542b2d870b77868c98c03", - "sha256:6c889025f59884423428c261f212e04d438de865beda0b1e1babab85ef4c0f01", - "sha256:6cb8fdc044909e2078c248986f2fc76f911f72b51ea4a4fbbf472e01d14faa58", - "sha256:6e9be3ef84e2bb9710f3f777accce25556f4a71e15d2b73223788d528fcc2052", - "sha256:7f762a1a85a12cc3484f77eee7be87b10f8c50b0b787bb02f4e357403cad0c0e", - "sha256:83a696da8922314ff2aec02987eefb03784f473281d740bf9170181829133765", - "sha256:853853cbf7bf9408b404754b92512ebe3e3a83587503d766d23e6bf83d092ee6", - "sha256:8ad3fe0a3567c2f0f629d800409cd528cb6251da12e81a1f765e5c5345fd0137", - "sha256:8c6ed10c2497e5fedadf61e465b3ca12a19f96004c15dcffe4bd442ebadc2d85", - "sha256:8d5f400326840934e3507701f9f7269247f7c026d1b6cfd49477d2be0933cfca", - "sha256:927c589500f9f41e370b0125c12ac9e7d3a2fd166b89e9ee2828b3dda20bfe6f", - "sha256:9a0aa47f94ea9a0b39dd30850b0adf2e1cd32a8b4f9c7aa443d852aacf9ca214", - "sha256:9b37a7ba223b2f26122c148bb8d09a9ff312afca998c48c725ff5a0a632145f7", - "sha256:9c873345680c1b87f1e09e0eaf8cf6c891b9851d8b4d3645e7efe2ec20a20cc7", - "sha256:9d09869f2c5a6f2d9df50ce3064b3391d3ecb6dced708ad64467b9e4f2c9bef3", - "sha256:9d353c4cfda586db2a176ce42c88f2fc31ec25e50212650c89fdd0f560ee507b", - "sha256:a1e3014a625bcf107fbf38eece0e47fa0190e52e45dc6eee5a8265ddc6dc5ea7", - "sha256:a3b9bec9579a15fb3ca2d9878deae789df72f2b0fdaf90ad49ee389cad5edab6", - "sha256:ab03a90b305d2588e8352168e8c5a1520b721d2d367f31e9332c4235b30b8994", - "sha256:aff06b2cac3ef4616e26ba17a9c250c1fe9dd8a5d907d0193f84c499b1b6e6a9", - "sha256:b3cab0e06143768499384a8a5efb9c4dc53e19382952859e4802f294214f36ec", - "sha256:b4a21f71885aa2744719459951819e7bf5a906a6448a6b2bbce8e9cc9f2c8128", - "sha256:b6d45d9b699ecbac6c7bd8e0a2609767491540403610962968d258fd6405c17c", - "sha256:be6dd5d52b73018b21adc1c5d28ac0c68184a64769052dfeb0c5d9998e7f56a2", - "sha256:c550a56bf209a3d987d5a975cdf2063b3389a5d16caf29db4bdddeae49f22078", - "sha256:c76c635fabf542bb78524905718c39f736a98e5ab25b23ec6d4abede1a85a6a3", - "sha256:c81818595eff6e92535ff32825f31c116f867f64ff8cdf6562cd1d6b2e1e8f3e", - "sha256:cfb92d49dbb95ec7a07511bc9efb0faff8fe24ef3805662b8d6808ba8409a71a", - "sha256:d23bcd6c8eaa6324fe109d8cac01b41fe9a54b8c498af9ce464c1aeeb99903d6", - "sha256:d5b1dc0e708fad9f92c296ab2f948af403bf201db8fb2eb4c8179db143732e49", - "sha256:d78f30cbe8b2ce770160d3c08cff01b2ae9306fe66ce899b73f0409dc1846c1b", - "sha256:d8f57c4461cd24fda22493109c45b3980863c58a25b8bec885ca8bea6b8d4b28", - "sha256:d9792dff410f266051025ecfaa927078b94cc7478954b06796a9756ccc7e14a9", - "sha256:e7941bbcfdded9c26b0bf720cb7e6fd803d95a55d2c14b4bd1f6a2772230c586", - "sha256:ebe684d7d26239e23d102a2bad2a358dedf18e462e8808778703427d1f584400", - "sha256:ec8c8900dc5c83650a63dd48c4d1d245343f904c4b64b48798c67a3767d7e165", - "sha256:f564bf68404144ea6b87a78a3f910cc8de216c6b12a4cf0b27718bf4ec38d303", - "sha256:fd7ac678b92b29ba630d8c842d8ad6c555abda1b9ef044d6cc092dacbfc9719d" + "sha256:00095dd368f73f8f1c3a7982a9801190cc88a2f3582dd395b289294f8975172b", + "sha256:00ad0bcd399503a84cc688590cdffbe7a991691314dde5b57b3ed50a41319a31", + "sha256:00f39592cdd124b4ec5ed0b1edfae091567c72c7da1487ae645426d1b0ffcad1", + "sha256:030bc4e68d14bcad2294ff68c1ed87215fbd9a10d9dea74e7cfe8a17869785ab", + "sha256:052d668a167e9fc345c24203b104c313c86654dd6c0feb4b8a6dfc2462239249", + "sha256:067dea90c43bf837d41e72e546196e674f68c23702d3ef80e4e816937b0a3ffd", + "sha256:0b04a2cbc30e110303baa6d3ddce8ca3664bc3403be0f0ad513d1843a41c97d1", + "sha256:0bc3b2f93a140df6806c8467c7f51ed5e55a931b031b5c2d7ff6132292e803d6", + "sha256:0c8e0aa0e8cc2a43561e0184c0513e291ca891db13a269d8d47cb9841ced7c71", + "sha256:103622865599f8082f03af4214eaff90e2426edff5e8522c8f9e93dc17caee13", + "sha256:1235c11510ea557fe21be5d0e354bae2c655a8ee6519c94617fe63e05bca4171", + "sha256:1cc0cba54f47c660d9fa3218158b8963c517ed23bd9f45fe463f08262a4adae1", + "sha256:1d9188979a58a096b6f8090e816ccc3f255f137a009dd4bbec628e27696d67c1", + "sha256:213792c2cd3150b903e6e7884d40660e0bcec4465e00563a5fc03f30ea9c166c", + "sha256:25c817ff2a86bc3de3ed2df1703e3d24ce03479b27bb4527c57e722f8554d971", + "sha256:2627a91e8110b8de2406d8b2474427c86f5a62bf7d9ab3654f541f319ef22bcb", + "sha256:280a4afbc607cdfc9571b9904b03a478fc9f08bbeec382d648181c695648202f", + "sha256:28324d6b28bcb8d7c1041648d7b63be07a16db5510bea923fc80b91a2a6cbed6", + "sha256:28585744c931576e535860eaf3f2c0ec7deb68e3b9c5a85ca566d69d36d8dd27", + "sha256:28f393c1194b6eaadcdd8f941307fc9bbd7eb567995232c830f6aef38e8a6e88", + "sha256:2abeb79209630da981f8ebca30a2c84b4c3516a214451bfc5f106723c5f45843", + "sha256:2bdadf6b90c099ca079d468f976fd50062905d61fae183f769637cb0f68ba59a", + "sha256:2f350cbaa4bb812314af5dab0eb8d538481e2e2279472890864547f3fe2281ed", + "sha256:3218a6f908f6a276941422b035b511b6d0d8328edd89a53ae8c65be139073f84", + "sha256:3973145235a38f73c61474d56ad6199124e7488822f3a4fc97c72009751ae3b0", + "sha256:3a0d883351a34c01bd53cfa75cd0292e3f7e268bacf2f9e33af4ecede7e21d1d", + "sha256:425440e55cd735386ec7925f64d5dde392e69979d4c8459f6bb4e920210407f2", + "sha256:4b9f2a128a32a2c273d63eb1fdbf49ad64852fc38d15b34eaa3f7ca2f0d2b797", + "sha256:4cc382083afba7918e32d5ef12321421ef43d685b9a67cc452a6e6e18920890e", + "sha256:52fc9b0dbf54d43301a19b236b4a4614e610605f95e8c3f0f65c3a456ffd7d35", + "sha256:55b7cc10261c2786c41d9207193a85c1db1b725cf87936df40972aab466179b6", + "sha256:581f0a051ba7bafd03e17127735d92f4d286af941dacf94bcf823b101366249e", + "sha256:5834e1f8b71476a26df97d121c0c0ed3549d869124ed2433e02491553cb468c2", + "sha256:5e45fb0d70dda1623a7045bd00c9e036e6f1f6a85e4ef2c8ae602b1dfadf7550", + "sha256:61af9efa0733dc4ca462347becb82e8ef4945aba5135b1638bfc20fad64d4f0e", + "sha256:68fe0c4d22332d7ce53ad094622b27e67440dacefbaedd29e0794d26e247280c", + "sha256:72a44e9481afc7a5ee3291b09c419abab93b7e9c306c9ef9108cb76728ca58d2", + "sha256:7a74436c415843af2a769b36bf043b6ccbc0f8d784814ba3d42fc961cdb0a9dc", + "sha256:8597b6f9dc410bdafc8bb362dac1cbc9b4684a8310e16b1ff5eee8725d13dcd6", + "sha256:8c39987a1397a877217be1ac0fb1d8b9f662c6077b90ff3de2c05f235e6a8f96", + "sha256:8c3e3675e6e39dc59b8fe5c914a19d30029e36e9f99468dddffd432d8a7b1c93", + "sha256:8dc1fc25a1dedf2dd952909c8e5cb210791e5f2d9bc5e0e8ebc28dd42fed7562", + "sha256:8fdebb655bb1ba0122402352b0a4254812717a017d2dc49372a1d47e24073795", + "sha256:9165bcab15f2b6d90eedc5c20a7f8a03156b3773e5fb06a790b54ccecdb73385", + "sha256:94ebe84a035993bb7668f58a0ebf998174fb723a39e4ef9fce95baabb42b787f", + "sha256:9624a68b96c878c10437199d9a8b7d7e542feddda8d5ecff58fdc8e67b460848", + "sha256:96eec15e5ea7c0b6eb5bfffe990fc7c6bd833acf7e26704eb18387fb2f5fd087", + "sha256:97b94e14b88409c58cdf4a8eaf0e67dfd3ece7e9ce7140ea6ff48b0407a593ec", + "sha256:988e981aaab4f3955209e7e28c7794acdb690be1efa7f16f8ea5aba7ffdadacb", + "sha256:a8a31bfd98f846c3c284ba694c6365620b637debdd36e46e1859c897123aa232", + "sha256:a927b3034d0672f62fb2ef7ea3c9fc76d063c4b15ea852d1db2dc75fe2c09696", + "sha256:ace7d060432acde5532e26863e897ee684780337afb775107c0a90ae8dbccfd2", + "sha256:aec83c3ba24c723eac14225194b862af176d52292d271c98820199110e31141e", + "sha256:b44b70850f0073b5fcc0b31ede8b4e736860d70e2dbf55701e05d3227a154a67", + "sha256:b610fb5e27825b570554d01cec427b6620ce9bd21ff8ab775fc3a32f28bba63e", + "sha256:b810a2c7878cbdecca12feae2c2ae8af59bea016a78bc353c184fa1e09f76b68", + "sha256:bbf8a20266136507abf88b0df2328e6a9a7c7309e8daff124dda3803306a9fdb", + "sha256:bd4c06100bce70a20c4b81e599e5886cf504c9532951df65ad1133e508bf20be", + "sha256:c2444dc7cb9d8cc5ab88ebe792a8d75709d96eeef47f4c8fccb6df7c7bc5be71", + "sha256:c49b76a78c156979759d759339fb62eb0549515acfe4fd18bb151cc07366629c", + "sha256:c4a65474fd2b4c63e2c18ac67a0c6c66b82f4e73e2e4d940f837ed3d2fd9d4da", + "sha256:c5af2347d17ab0bd59366db8752d9e037982e259cacb2ba06f2c41c08af02c39", + "sha256:c668228833c5619f6618699a2c12be057711b0ea6396aeaece4ded94184304ea", + "sha256:c7b978c384e29d6c7372209cbf421d82286a807bbcdeb315427687f8371c340a", + "sha256:d048ad5d25b363ba1d19f92dcf29023988524bee6f9d952130b316c5802069cb", + "sha256:d3e1f3cf81f1f823e7874ae563457828e940d75573c8fbf0ee66818c8b6a9099", + "sha256:d47e9ef1a94cc7a536039e46738e17cce058ac1593b2eccdede8bf72e45f372a", + "sha256:da1e0a8caebf17976e2ffd00fa15f258e14749db5e014660f53114b676e68538", + "sha256:dc1b9b56f051209be458b87edb6856a449ad3f803315d87b2da4c93b43a6fe72", + "sha256:dc2e8fe41f3cac0660197d95216c42910c2b7e9c70d48e6d84e22f577d106fc1", + "sha256:dc92d2d2706d2b862ce0568b24987eba51e17e14b79a1abcd2edc39e48e743c8", + "sha256:dd64f3a4db121bc161644c9e10a9acdb836853155a108c2446db2f5ae1778c3d", + "sha256:e0f0a874231e2839abbf473256efffe577d6ee2e3bfa5b540479e892e47c172d", + "sha256:f7e1f9c5d1160d03b93fc4b68a0aeb82fe25563e12fbcdc8507f8434ab6f823c", + "sha256:fe82d13461418ca5e5a808a9e40f79c1879351fcaeddbede094028e74d836e86" ], - "version": "==0.21.0" + "version": "==0.22.0" }, "wcwidth": { "hashes": [ @@ -2392,11 +2480,11 @@ "develop": { "anyio": { "hashes": [ - "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", - "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", + "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7" ], "markers": "python_version >= '3.8'", - "version": "==4.3.0" + "version": "==4.4.0" }, "asgiref": { "hashes": [ @@ -2430,48 +2518,19 @@ }, "babel": { "hashes": [ - "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363", - "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287" + "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb", + "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413" ], - "markers": "python_version >= '3.7'", - "version": "==2.14.0" - }, - "black": { - "hashes": [ - "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474", - "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1", - "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0", - "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8", - "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96", - "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1", - "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04", - "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021", - "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94", - "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d", - "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c", - "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7", - "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c", - "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc", - "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7", - "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d", - "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c", - "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741", - "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce", - "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb", - "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063", - "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e" - ], - "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==24.4.2" + "version": "==2.15.0" }, "certifi": { "hashes": [ - "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", - "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", + "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" ], "markers": "python_version >= '3.6'", - "version": "==2024.2.2" + "version": "==2024.6.2" }, "cffi": { "hashes": [ @@ -2664,99 +2723,99 @@ "toml" ], "hashes": [ - "sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de", - "sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661", - "sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26", - "sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41", - "sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d", - "sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981", - "sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2", - "sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34", - "sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f", - "sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a", - "sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35", - "sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223", - "sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1", - "sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746", - "sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90", - "sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c", - "sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca", - "sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8", - "sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596", - "sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e", - "sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd", - "sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e", - "sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3", - "sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e", - "sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312", - "sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7", - "sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572", - "sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428", - "sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f", - "sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07", - "sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e", - "sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4", - "sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136", - "sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5", - "sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8", - "sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d", - "sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228", - "sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206", - "sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa", - "sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e", - "sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be", - "sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5", - "sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668", - "sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601", - "sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057", - "sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146", - "sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f", - "sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8", - "sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7", - "sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987", - "sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19", - "sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece" + "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523", + "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f", + "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d", + "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb", + "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0", + "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c", + "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98", + "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83", + "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8", + "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7", + "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac", + "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84", + "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb", + "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3", + "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884", + "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614", + "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd", + "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807", + "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd", + "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8", + "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc", + "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db", + "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0", + "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08", + "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232", + "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d", + "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a", + "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1", + "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286", + "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303", + "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341", + "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84", + "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45", + "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc", + "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec", + "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd", + "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155", + "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52", + "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d", + "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485", + "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31", + "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d", + "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d", + "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d", + "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85", + "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce", + "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb", + "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974", + "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24", + "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56", + "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9", + "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35" ], "markers": "python_version >= '3.8'", - "version": "==7.5.1" + "version": "==7.5.3" }, "cryptography": { "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" ], "markers": "python_version >= '3.7'", - "version": "==42.0.5" + "version": "==42.0.7" }, "daphne": { "hashes": [ @@ -2801,11 +2860,11 @@ }, "faker": { "hashes": [ - "sha256:6737cc6d591cd83421fdc5e494f6e2c1a6e32266214f158b745aa9fa15687c98", - "sha256:c153505618801f1704807b258a6010ea8cabf91f66f4788939bfdba83b887e76" + "sha256:0158d47e955b6ec22134c0a74ebb7ed34fe600896208bafbf1008db831b17f04", + "sha256:bcbe31eee5ef4bbf87ce36c4eba53c01e2a1d912fde2a4d3528b430d2beb784f" ], "markers": "python_version >= '3.8'", - "version": "==25.0.1" + "version": "==25.3.0" }, "filelock": { "hashes": [ @@ -2909,7 +2968,6 @@ "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" ], - "index": "pypi", "markers": "python_version >= '3.7'", "version": "==3.1.4" }, @@ -3021,12 +3079,12 @@ }, "mkdocs-material": { "hashes": [ - "sha256:049f82770f40559d3c2aa2259c562ea7257dbb4aaa9624323b5ef27b2d95a450", - "sha256:210e1f179682cd4be17d5c641b2f4559574b9dea2f589c3f0e7c17c5bd1959bc" + "sha256:a7d4a35f6d4a62b0c43a0cfe7e987da0980c13587b5bc3c26e690ad494427ec0", + "sha256:af8cc263fafa98bb79e9e15a8c966204abf15164987569bd1175fd66a7705182" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==9.5.21" + "version": "==9.5.27" }, "mkdocs-material-extensions": { "hashes": [ @@ -3036,21 +3094,13 @@ "markers": "python_version >= '3.8'", "version": "==1.3.1" }, - "mypy-extensions": { - "hashes": [ - "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", - "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" - ], - "markers": "python_version >= '3.5'", - "version": "==1.0.0" - }, "nodeenv": { "hashes": [ - "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2", - "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec" + "sha256:07f144e90dae547bf0d4ee8da0ee42664a42a04e02ed68e06324348dafe4bdb1", + "sha256:508ecec98f9f3330b636d4448c0f1a56fc68017c68f1e7857ebc52acf0eb879a" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", - "version": "==1.8.0" + "version": "==1.9.0" }, "numpy": { "hashes": [ @@ -3096,11 +3146,11 @@ }, "packaging": { "hashes": [ - "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", - "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", + "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124" ], - "markers": "python_version >= '3.7'", - "version": "==24.0" + "markers": "python_version >= '3.8'", + "version": "==24.1" }, "paginate": { "hashes": [ @@ -3193,11 +3243,11 @@ }, "platformdirs": { "hashes": [ - "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf", - "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1" + "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", + "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3" ], "markers": "python_version >= '3.8'", - "version": "==4.2.1" + "version": "==4.2.2" }, "pluggy": { "hashes": [ @@ -3209,12 +3259,12 @@ }, "pre-commit": { "hashes": [ - "sha256:5eae9e10c2b5ac51577c3452ec0a490455c45a0533f7960f993a0d01e59decab", - "sha256:e209d61b8acdcf742404408531f0c37d49d2c734fd7cff2d6076083d191cb060" + "sha256:8ca3ad567bc78a4972a3f1a477e94a79d4597e8140a6e0b651c5e33899c3654a", + "sha256:fae36fd1d7ad7d6a5a1c0b0d5adb2ed1a3bda5a21bf6c3e5372073d7a11cd4c5" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==3.7.0" + "version": "==3.7.1" }, "pyasn1": { "hashes": [ @@ -3265,12 +3315,12 @@ }, "pytest": { "hashes": [ - "sha256:1733f0620f6cda4095bbf0d9ff8022486e91892245bb9e7d5542c018f612f233", - "sha256:d507d4482197eac0ba2bae2e9babf0672eb333017bcedaa5fb1a3d42c1174b3f" + "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343", + "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==8.2.0" + "version": "==8.2.2" }, "pytest-cov": { "hashes": [ @@ -3339,7 +3389,6 @@ "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], - "index": "pypi", "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, @@ -3436,6 +3485,7 @@ "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" ], + "markers": "python_version >= '3.6'", "version": "==6.0.1" }, "pyyaml-env-tag": { @@ -3448,150 +3498,151 @@ }, "regex": { "hashes": [ - "sha256:05d9b6578a22db7dedb4df81451f360395828b04f4513980b6bd7a1412c679cc", - "sha256:08a1749f04fee2811c7617fdd46d2e46d09106fa8f475c884b65c01326eb15c5", - "sha256:0940038bec2fe9e26b203d636c44d31dd8766abc1fe66262da6484bd82461ccf", - "sha256:0a2a512d623f1f2d01d881513af9fc6a7c46e5cfffb7dc50c38ce959f9246c94", - "sha256:0a54a047b607fd2d2d52a05e6ad294602f1e0dec2291152b745870afc47c1397", - "sha256:0dd3f69098511e71880fb00f5815db9ed0ef62c05775395968299cb400aeab82", - "sha256:1031a5e7b048ee371ab3653aad3030ecfad6ee9ecdc85f0242c57751a05b0ac4", - "sha256:108e2dcf0b53a7c4ab8986842a8edcb8ab2e59919a74ff51c296772e8e74d0ae", - "sha256:144a1fc54765f5c5c36d6d4b073299832aa1ec6a746a6452c3ee7b46b3d3b11d", - "sha256:19d6c11bf35a6ad077eb23852827f91c804eeb71ecb85db4ee1386825b9dc4db", - "sha256:1f687a28640f763f23f8a9801fe9e1b37338bb1ca5d564ddd41619458f1f22d1", - "sha256:224803b74aab56aa7be313f92a8d9911dcade37e5f167db62a738d0c85fdac4b", - "sha256:23a412b7b1a7063f81a742463f38821097b6a37ce1e5b89dd8e871d14dbfd86b", - "sha256:25f87ae6b96374db20f180eab083aafe419b194e96e4f282c40191e71980c666", - "sha256:2630ca4e152c221072fd4a56d4622b5ada876f668ecd24d5ab62544ae6793ed6", - "sha256:28e1f28d07220c0f3da0e8fcd5a115bbb53f8b55cecf9bec0c946eb9a059a94c", - "sha256:2b51739ddfd013c6f657b55a508de8b9ea78b56d22b236052c3a85a675102dc6", - "sha256:2cc1b87bba1dd1a898e664a31012725e48af826bf3971e786c53e32e02adae6c", - "sha256:2fef0b38c34ae675fcbb1b5db760d40c3fc3612cfa186e9e50df5782cac02bcd", - "sha256:36f392dc7763fe7924575475736bddf9ab9f7a66b920932d0ea50c2ded2f5636", - "sha256:374f690e1dd0dbdcddea4a5c9bdd97632cf656c69113f7cd6a361f2a67221cb6", - "sha256:3986217ec830c2109875be740531feb8ddafe0dfa49767cdcd072ed7e8927962", - "sha256:39fb166d2196413bead229cd64a2ffd6ec78ebab83fff7d2701103cf9f4dfd26", - "sha256:4290035b169578ffbbfa50d904d26bec16a94526071ebec3dadbebf67a26b25e", - "sha256:43548ad74ea50456e1c68d3c67fff3de64c6edb85bcd511d1136f9b5376fc9d1", - "sha256:44a22ae1cfd82e4ffa2066eb3390777dc79468f866f0625261a93e44cdf6482b", - "sha256:457c2cd5a646dd4ed536c92b535d73548fb8e216ebee602aa9f48e068fc393f3", - "sha256:459226445c7d7454981c4c0ce0ad1a72e1e751c3e417f305722bbcee6697e06a", - "sha256:47af45b6153522733aa6e92543938e97a70ce0900649ba626cf5aad290b737b6", - "sha256:499334ad139557de97cbc4347ee921c0e2b5e9c0f009859e74f3f77918339257", - "sha256:57ba112e5530530fd175ed550373eb263db4ca98b5f00694d73b18b9a02e7185", - "sha256:5ce479ecc068bc2a74cb98dd8dba99e070d1b2f4a8371a7dfe631f85db70fe6e", - "sha256:5dbc1bcc7413eebe5f18196e22804a3be1bfdfc7e2afd415e12c068624d48247", - "sha256:6277d426e2f31bdbacb377d17a7475e32b2d7d1f02faaecc48d8e370c6a3ff31", - "sha256:66372c2a01782c5fe8e04bff4a2a0121a9897e19223d9eab30c54c50b2ebeb7f", - "sha256:670fa596984b08a4a769491cbdf22350431970d0112e03d7e4eeaecaafcd0fec", - "sha256:6f435946b7bf7a1b438b4e6b149b947c837cb23c704e780c19ba3e6855dbbdd3", - "sha256:7413167c507a768eafb5424413c5b2f515c606be5bb4ef8c5dee43925aa5718b", - "sha256:7c3d389e8d76a49923683123730c33e9553063d9041658f23897f0b396b2386f", - "sha256:7d77b6f63f806578c604dca209280e4c54f0fa9a8128bb8d2cc5fb6f99da4150", - "sha256:7e76b9cfbf5ced1aca15a0e5b6f229344d9b3123439ffce552b11faab0114a02", - "sha256:7f3502f03b4da52bbe8ba962621daa846f38489cae5c4a7b5d738f15f6443d17", - "sha256:7fe9739a686dc44733d52d6e4f7b9c77b285e49edf8570754b322bca6b85b4cc", - "sha256:83ab366777ea45d58f72593adf35d36ca911ea8bd838483c1823b883a121b0e4", - "sha256:84077821c85f222362b72fdc44f7a3a13587a013a45cf14534df1cbbdc9a6796", - "sha256:8bb381f777351bd534462f63e1c6afb10a7caa9fa2a421ae22c26e796fe31b1f", - "sha256:92da587eee39a52c91aebea8b850e4e4f095fe5928d415cb7ed656b3460ae79a", - "sha256:9301cc6db4d83d2c0719f7fcda37229691745168bf6ae849bea2e85fc769175d", - "sha256:965fd0cf4694d76f6564896b422724ec7b959ef927a7cb187fc6b3f4e4f59833", - "sha256:99d6a550425cc51c656331af0e2b1651e90eaaa23fb4acde577cf15068e2e20f", - "sha256:99ef6289b62042500d581170d06e17f5353b111a15aa6b25b05b91c6886df8fc", - "sha256:a1409c4eccb6981c7baabc8888d3550df518add6e06fe74fa1d9312c1838652d", - "sha256:a74fcf77d979364f9b69fcf8200849ca29a374973dc193a7317698aa37d8b01c", - "sha256:aaa179975a64790c1f2701ac562b5eeb733946eeb036b5bcca05c8d928a62f10", - "sha256:ac69b394764bb857429b031d29d9604842bc4cbfd964d764b1af1868eeebc4f0", - "sha256:b45d4503de8f4f3dc02f1d28a9b039e5504a02cc18906cfe744c11def942e9eb", - "sha256:b7d893c8cf0e2429b823ef1a1d360a25950ed11f0e2a9df2b5198821832e1947", - "sha256:b8eb28995771c087a73338f695a08c9abfdf723d185e57b97f6175c5051ff1ae", - "sha256:b91d529b47798c016d4b4c1d06cc826ac40d196da54f0de3c519f5a297c5076a", - "sha256:bc365ce25f6c7c5ed70e4bc674f9137f52b7dd6a125037f9132a7be52b8a252f", - "sha256:bf29304a8011feb58913c382902fde3395957a47645bf848eea695839aa101b7", - "sha256:c06bf3f38f0707592898428636cbb75d0a846651b053a1cf748763e3063a6925", - "sha256:c77d10ec3c1cf328b2f501ca32583625987ea0f23a0c2a49b37a39ee5c4c4630", - "sha256:cd196d056b40af073d95a2879678585f0b74ad35190fac04ca67954c582c6b61", - "sha256:d7a353ebfa7154c871a35caca7bfd8f9e18666829a1dc187115b80e35a29393e", - "sha256:d84308f097d7a513359757c69707ad339da799e53b7393819ec2ea36bc4beb58", - "sha256:dd7ef715ccb8040954d44cfeff17e6b8e9f79c8019daae2fd30a8806ef5435c0", - "sha256:e672cf9caaf669053121f1766d659a8813bd547edef6e009205378faf45c67b8", - "sha256:ecc6148228c9ae25ce403eade13a0961de1cb016bdb35c6eafd8e7b87ad028b1", - "sha256:f1c5742c31ba7d72f2dedf7968998730664b45e38827637e0f04a2ac7de2f5f1", - "sha256:f1d6e4b7b2ae3a6a9df53efbf199e4bfcff0959dbdb5fd9ced34d4407348e39a", - "sha256:f2fc053228a6bd3a17a9b0a3f15c3ab3cf95727b00557e92e1cfe094b88cc662", - "sha256:f57515750d07e14743db55d59759893fdb21d2668f39e549a7d6cad5d70f9fea", - "sha256:f85151ec5a232335f1be022b09fbbe459042ea1951d8a48fef251223fc67eee1", - "sha256:fb0315a2b26fde4005a7c401707c5352df274460f2f85b209cf6024271373013", - "sha256:fc0916c4295c64d6890a46e02d4482bb5ccf33bf1a824c0eaa9e83b148291f90", - "sha256:fd24fd140b69f0b0bcc9165c397e9b2e89ecbeda83303abf2a072609f60239e2", - "sha256:fdae0120cddc839eb8e3c15faa8ad541cc6d906d3eb24d82fb041cfe2807bc1e", - "sha256:fe00f4fe11c8a521b173e6324d862ee7ee3412bf7107570c9b564fe1119b56fb" + "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649", + "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35", + "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb", + "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68", + "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5", + "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133", + "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0", + "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d", + "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da", + "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f", + "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d", + "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53", + "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa", + "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a", + "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890", + "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67", + "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c", + "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2", + "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced", + "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741", + "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f", + "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa", + "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf", + "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4", + "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5", + "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2", + "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384", + "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7", + "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014", + "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704", + "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5", + "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2", + "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49", + "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1", + "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694", + "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629", + "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6", + "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435", + "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c", + "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835", + "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e", + "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201", + "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62", + "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5", + "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16", + "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f", + "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1", + "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f", + "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f", + "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145", + "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3", + "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed", + "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143", + "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca", + "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9", + "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa", + "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850", + "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80", + "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe", + "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656", + "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388", + "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1", + "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294", + "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3", + "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d", + "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b", + "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40", + "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600", + "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c", + "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569", + "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456", + "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9", + "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb", + "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e", + "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f", + "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d", + "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a", + "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a", + "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796" ], "markers": "python_version >= '3.8'", - "version": "==2024.4.28" + "version": "==2024.5.15" }, "requests": { "hashes": [ - "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", - "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" ], - "version": "==2.31.0" + "markers": "python_version >= '3.8'", + "version": "==2.32.3" }, "ruff": { "hashes": [ - "sha256:08a0d6a22918ab2552ace96adeaca308833873a4d7d1d587bb1d37bae8728eb3", - "sha256:0bfc9e955e6dc6359eb6f82ea150c4f4e82b660e5b58d9a20a0e42ec3bb6342b", - "sha256:18b00e0bcccf0fc8d7186ed21e311dffd19761cb632241a6e4fe4477cc80ef6e", - "sha256:25cacda2155778beb0d064e0ec5a3944dcca9c12715f7c4634fd9d93ac33fd30", - "sha256:262f5635e2c74d80b7507fbc2fac28fe0d4fef26373bbc62039526f7722bca1b", - "sha256:29efff25bf9ee685c2c8390563a5b5c006a3fee5230d28ea39f4f75f9d0b6f2f", - "sha256:510a67d232d2ebe983fddea324dbf9d69b71c4d2dfeb8a862f4a127536dd4cfb", - "sha256:71ca5f8ccf1121b95a59649482470c5601c60a416bf189d553955b0338e34614", - "sha256:7363691198719c26459e08cc17c6a3dac6f592e9ea3d2fa772f4e561b5fe82a3", - "sha256:7a1c3a450bc6539ef00da6c819fb1b76b6b065dec585f91456e7c0d6a0bbc725", - "sha256:819fb06d535cc76dfddbfe8d3068ff602ddeb40e3eacbc90e0d1272bb8d97113", - "sha256:927b11c1e4d0727ce1a729eace61cee88a334623ec424c0b1c8fe3e5f9d3c865", - "sha256:b70800c290f14ae6fcbb41bbe201cf62dfca024d124a1f373e76371a007454ce", - "sha256:dc9ff11cd9a092ee7680a56d21f302bdda14327772cd870d806610a3503d001f", - "sha256:eba1f14df3c758dd7de5b55fbae7e1c8af238597961e5fb628f3de446c3c40c5", - "sha256:eeb039f8428fcb6725bb63cbae92ad67b0559e68b5d80f840f11914afd8ddf7f", - "sha256:ff0a3ef2e3c4b6d133fbedcf9586abfbe38d076041f2dc18ffb2c7e0485d5a07" + "sha256:06b60f91bfa5514bb689b500a25ba48e897d18fea14dce14b48a0c40d1635893", + "sha256:0e8e7b95673f22e0efd3571fb5b0cf71a5eaaa3cc8a776584f3b2cc878e46bff", + "sha256:2d45ddc6d82e1190ea737341326ecbc9a61447ba331b0a8962869fcada758505", + "sha256:4555056049d46d8a381f746680db1c46e67ac3b00d714606304077682832998e", + "sha256:5d5460f789ccf4efd43f265a58538a2c24dbce15dbf560676e430375f20a8198", + "sha256:673bddb893f21ab47a8334c8e0ea7fd6598ecc8e698da75bcd12a7b9d0a3206e", + "sha256:732dd550bfa5d85af8c3c6cbc47ba5b67c6aed8a89e2f011b908fc88f87649db", + "sha256:784d3ec9bd6493c3b720a0b76f741e6c2d7d44f6b2be87f5eef1ae8cc1d54c84", + "sha256:78de3fdb95c4af084087628132336772b1c5044f6e710739d440fc0bccf4d321", + "sha256:8064590fd1a50dcf4909c268b0e7c2498253273309ad3d97e4a752bb9df4f521", + "sha256:88bffe9c6a454bf8529f9ab9091c99490578a593cc9f9822b7fc065ee0712a06", + "sha256:8c1aff58c31948cc66d0b22951aa19edb5af0a3af40c936340cd32a8b1ab7438", + "sha256:98ec2775fd2d856dc405635e5ee4ff177920f2141b8e2d9eb5bd6efd50e80317", + "sha256:b262ed08d036ebe162123170b35703aaf9daffecb698cd367a8d585157732991", + "sha256:e0a22c4157e53d006530c902107c7f550b9233e9706313ab57b892d7197d8e52", + "sha256:e91175fbe48f8a2174c9aad70438fe9cb0a5732c4159b2a10a3565fea2d94cde", + "sha256:f1cb0828ac9533ba0135d148d214e284711ede33640465e706772645483427e3" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==0.4.3" + "version": "==0.4.9" }, "scipy": { "hashes": [ - "sha256:05f1432ba070e90d42d7fd836462c50bf98bd08bed0aa616c359eed8a04e3922", - "sha256:09c74543c4fbeb67af6ce457f6a6a28e5d3739a87f62412e4a16e46f164f0ae5", - "sha256:0fbcf8abaf5aa2dc8d6400566c1a727aed338b5fe880cde64907596a89d576fa", - "sha256:109d391d720fcebf2fbe008621952b08e52907cf4c8c7efc7376822151820820", - "sha256:1d2f7bb14c178f8b13ebae93f67e42b0a6b0fc50eba1cd8021c9b6e08e8fb1cd", - "sha256:1e7626dfd91cdea5714f343ce1176b6c4745155d234f1033584154f60ef1ff42", - "sha256:22789b56a999265431c417d462e5b7f2b487e831ca7bef5edeb56efe4c93f86e", - "sha256:28e286bf9ac422d6beb559bc61312c348ca9b0f0dae0d7c5afde7f722d6ea13d", - "sha256:33fde20efc380bd23a78a4d26d59fc8704e9b5fd9b08841693eb46716ba13d86", - "sha256:45c08bec71d3546d606989ba6e7daa6f0992918171e2a6f7fbedfa7361c2de1e", - "sha256:4dca18c3ffee287ddd3bc8f1dabaf45f5305c5afc9f8ab9cbfab855e70b2df5c", - "sha256:5407708195cb38d70fd2d6bb04b1b9dd5c92297d86e9f9daae1576bd9e06f602", - "sha256:58569af537ea29d3f78e5abd18398459f195546bb3be23d16677fb26616cc11e", - "sha256:5e4a756355522eb60fcd61f8372ac2549073c8788f6114449b37e9e8104f15a5", - "sha256:6bf9fe63e7a4bf01d3645b13ff2aa6dea023d38993f42aaac81a18b1bda7a82a", - "sha256:8930ae3ea371d6b91c203b1032b9600d69c568e537b7988a3073dfe4d4774f21", - "sha256:9ff7dad5d24a8045d836671e082a490848e8639cabb3dbdacb29f943a678683d", - "sha256:a2f471de4d01200718b2b8927f7d76b5d9bde18047ea0fa8bd15c5ba3f26a1d6", - "sha256:ac38c4c92951ac0f729c4c48c9e13eb3675d9986cc0c83943784d7390d540c78", - "sha256:b2a3ff461ec4756b7e8e42e1c681077349a038f0686132d623fa404c0bee2551", - "sha256:b5acd8e1dbd8dbe38d0004b1497019b2dbbc3d70691e65d69615f8a7292865d7", - "sha256:b8434f6f3fa49f631fae84afee424e2483289dfc30a47755b4b4e6b07b2633a4", - "sha256:ba419578ab343a4e0a77c0ef82f088238a93eef141b2b8017e46149776dfad4d", - "sha256:d0de696f589681c2802f9090fff730c218f7c51ff49bf252b6a97ec4a5d19e8b", - "sha256:dcbb9ea49b0167de4167c40eeee6e167caeef11effb0670b554d10b1e693a8b9" + "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", + "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", + "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", + "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", + "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", + "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", + "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", + "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", + "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", + "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", + "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", + "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", + "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", + "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", + "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", + "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", + "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", + "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", + "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", + "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", + "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", + "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", + "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", + "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", + "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f" ], "markers": "python_version >= '3.9'", - "version": "==1.13.0" + "version": "==1.13.1" }, "service-identity": { "hashes": [ @@ -3602,11 +3653,11 @@ }, "setuptools": { "hashes": [ - "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", - "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" + "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4", + "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0" ], "markers": "python_version >= '3.8'", - "version": "==69.5.1" + "version": "==70.0.0" }, "six": { "hashes": [ @@ -3661,113 +3712,115 @@ }, "typing-extensions": { "hashes": [ - "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", - "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + "sha256:6024b58b69089e5a89c347397254e35f1bf02a907728ec7fee9bf0fe837d203a", + "sha256:915f5e35ff76f56588223f15fdd5938f9a1cf9195c0de25130c627e4d597f6d1" ], "markers": "python_version < '3.11'", - "version": "==4.11.0" + "version": "==4.12.1" }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", + "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168" ], "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.2" }, "virtualenv": { "hashes": [ - "sha256:604bfdceaeece392802e6ae48e69cec49168b9c5f4a44e483963f9242eb0e78b", - "sha256:7aa9982a728ae5892558bff6a2839c00b9ed145523ece2274fad6f414690ae75" + "sha256:82bf0f4eebbb78d36ddaee0283d43fe5736b53880b8a8cdcd37390a07ac3741c", + "sha256:a624db5e94f01ad993d476b9ee5346fdf7b9de43ccaee0e0197012dc838a0e9b" ], "markers": "python_version >= '3.7'", - "version": "==20.26.1" + "version": "==20.26.2" }, "watchdog": { "hashes": [ - "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257", - "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca", - "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b", - "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85", - "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b", - "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19", - "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50", - "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92", - "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269", - "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f", - "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c", - "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b", - "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87", - "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b", - "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b", - "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8", - "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c", - "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3", - "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7", - "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605", - "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935", - "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b", - "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927", - "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101", - "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07", - "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec", - "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4", - "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245", - "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d" + "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7", + "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767", + "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175", + "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459", + "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5", + "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429", + "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6", + "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d", + "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7", + "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28", + "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235", + "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57", + "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a", + "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5", + "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709", + "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee", + "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84", + "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd", + "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba", + "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db", + "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682", + "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35", + "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d", + "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645", + "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253", + "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193", + "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b", + "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44", + "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b", + "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625", + "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e", + "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5" ], - "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.0.0" + "version": "==4.0.1" }, "zipp": { "hashes": [ - "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b", - "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715" + "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", + "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c" ], "markers": "python_version >= '3.8'", - "version": "==3.18.1" + "version": "==3.19.2" }, "zope-interface": { "hashes": [ - "sha256:014bb94fe6bf1786da1aa044eadf65bc6437bcb81c451592987e5be91e70a91e", - "sha256:01a0b3dd012f584afcf03ed814bce0fc40ed10e47396578621509ac031be98bf", - "sha256:10cde8dc6b2fd6a1d0b5ca4be820063e46ddba417ab82bcf55afe2227337b130", - "sha256:187f7900b63845dcdef1be320a523dbbdba94d89cae570edc2781eb55f8c2f86", - "sha256:1b0c4c90e5eefca2c3e045d9f9ed9f1e2cdbe70eb906bff6b247e17119ad89a1", - "sha256:22e8a218e8e2d87d4d9342aa973b7915297a08efbebea5b25900c73e78ed468e", - "sha256:26c9a37fb395a703e39b11b00b9e921c48f82b6e32cc5851ad5d0618cd8876b5", - "sha256:2bb78c12c1ad3a20c0d981a043d133299117b6854f2e14893b156979ed4e1d2c", - "sha256:2c3cfb272bcb83650e6695d49ae0d14dd06dc694789a3d929f23758557a23d92", - "sha256:2f32010ffb87759c6a3ad1c65ed4d2e38e51f6b430a1ca11cee901ec2b42e021", - "sha256:3c8731596198198746f7ce2a4487a0edcbc9ea5e5918f0ab23c4859bce56055c", - "sha256:40aa8c8e964d47d713b226c5baf5f13cdf3a3169c7a2653163b17ff2e2334d10", - "sha256:4137025731e824eee8d263b20682b28a0bdc0508de9c11d6c6be54163e5b7c83", - "sha256:46034be614d1f75f06e7dcfefba21d609b16b38c21fc912b01a99cb29e58febb", - "sha256:483e118b1e075f1819b3c6ace082b9d7d3a6a5eb14b2b375f1b80a0868117920", - "sha256:4d6b229f5e1a6375f206455cc0a63a8e502ed190fe7eb15e94a312dc69d40299", - "sha256:567d54c06306f9c5b6826190628d66753b9f2b0422f4c02d7c6d2b97ebf0a24e", - "sha256:5683aa8f2639016fd2b421df44301f10820e28a9b96382a6e438e5c6427253af", - "sha256:600101f43a7582d5b9504a7c629a1185a849ce65e60fca0f6968dfc4b76b6d39", - "sha256:62e32f02b3f26204d9c02c3539c802afc3eefb19d601a0987836ed126efb1f21", - "sha256:69dedb790530c7ca5345899a1b4cb837cc53ba669051ea51e8c18f82f9389061", - "sha256:72d5efecad16c619a97744a4f0b67ce1bcc88115aa82fcf1dc5be9bb403bcc0b", - "sha256:8d407e0fd8015f6d5dfad481309638e1968d70e6644e0753f229154667dd6cd5", - "sha256:a058e6cf8d68a5a19cb5449f42a404f0d6c2778b897e6ce8fadda9cea308b1b0", - "sha256:a1adc14a2a9d5e95f76df625a9b39f4709267a483962a572e3f3001ef90ea6e6", - "sha256:a56fe1261230093bfeedc1c1a6cd6f3ec568f9b07f031c9a09f46b201f793a85", - "sha256:ad4524289d8dbd6fb5aa17aedb18f5643e7d48358f42c007a5ee51a2afc2a7c5", - "sha256:afa0491a9f154cf8519a02026dc85a416192f4cb1efbbf32db4a173ba28b289a", - "sha256:bf34840e102d1d0b2d39b1465918d90b312b1119552cebb61a242c42079817b9", - "sha256:c40df4aea777be321b7e68facb901bc67317e94b65d9ab20fb96e0eb3c0b60a1", - "sha256:d0e7321557c702bd92dac3c66a2f22b963155fdb4600133b6b29597f62b71b12", - "sha256:d165d7774d558ea971cb867739fb334faf68fc4756a784e689e11efa3becd59e", - "sha256:e78a183a3c2f555c2ad6aaa1ab572d1c435ba42f1dc3a7e8c82982306a19b785", - "sha256:e8fa0fb05083a1a4216b4b881fdefa71c5d9a106e9b094cd4399af6b52873e91", - "sha256:f83d6b4b22262d9a826c3bd4b2fbfafe1d0000f085ef8e44cd1328eea274ae6a", - "sha256:f95bebd0afe86b2adc074df29edb6848fc4d474ff24075e2c263d698774e108d" + "sha256:00b5c3e9744dcdc9e84c24ed6646d5cf0cf66551347b310b3ffd70f056535854", + "sha256:0e4fa5d34d7973e6b0efa46fe4405090f3b406f64b6290facbb19dcbf642ad6b", + "sha256:136cacdde1a2c5e5bc3d0b2a1beed733f97e2dad8c2ad3c2e17116f6590a3827", + "sha256:1730c93a38b5a18d24549bc81613223962a19d457cfda9bdc66e542f475a36f4", + "sha256:1a62fd6cd518693568e23e02f41816adedfca637f26716837681c90b36af3671", + "sha256:1c207e6f6dfd5749a26f5a5fd966602d6b824ec00d2df84a7e9a924e8933654e", + "sha256:2eccd5bef45883802848f821d940367c1d0ad588de71e5cabe3813175444202c", + "sha256:33ee982237cffaf946db365c3a6ebaa37855d8e3ca5800f6f48890209c1cfefc", + "sha256:3d136e5b8821073e1a09dde3eb076ea9988e7010c54ffe4d39701adf0c303438", + "sha256:47654177e675bafdf4e4738ce58cdc5c6d6ee2157ac0a78a3fa460942b9d64a8", + "sha256:47937cf2e7ed4e0e37f7851c76edeb8543ec9b0eae149b36ecd26176ff1ca874", + "sha256:4ac46298e0143d91e4644a27a769d1388d5d89e82ee0cf37bf2b0b001b9712a4", + "sha256:4c0b208a5d6c81434bdfa0f06d9b667e5de15af84d8cae5723c3a33ba6611b82", + "sha256:551db2fe892fcbefb38f6f81ffa62de11090c8119fd4e66a60f3adff70751ec7", + "sha256:599f3b07bde2627e163ce484d5497a54a0a8437779362395c6b25e68c6590ede", + "sha256:5ef8356f16b1a83609f7a992a6e33d792bb5eff2370712c9eaae0d02e1924341", + "sha256:5fe919027f29b12f7a2562ba0daf3e045cb388f844e022552a5674fcdf5d21f1", + "sha256:6f0a6be264afb094975b5ef55c911379d6989caa87c4e558814ec4f5125cfa2e", + "sha256:706efc19f9679a1b425d6fa2b4bc770d976d0984335eaea0869bd32f627591d2", + "sha256:73f9752cf3596771c7726f7eea5b9e634ad47c6d863043589a1c3bb31325c7eb", + "sha256:762e616199f6319bb98e7f4f27d254c84c5fb1c25c908c2a9d0f92b92fb27530", + "sha256:866a0f583be79f0def667a5d2c60b7b4cc68f0c0a470f227e1122691b443c934", + "sha256:86a94af4a88110ed4bb8961f5ac72edf782958e665d5bfceaab6bf388420a78b", + "sha256:8e0343a6e06d94f6b6ac52fbc75269b41dd3c57066541a6c76517f69fe67cb43", + "sha256:97e615eab34bd8477c3f34197a17ce08c648d38467489359cb9eb7394f1083f7", + "sha256:a96e6d4074db29b152222c34d7eec2e2db2f92638d2b2b2c704f9e8db3ae0edc", + "sha256:b912750b13d76af8aac45ddf4679535def304b2a48a07989ec736508d0bbfbde", + "sha256:bc2676312cc3468a25aac001ec727168994ea3b69b48914944a44c6a0b251e79", + "sha256:cebff2fe5dc82cb22122e4e1225e00a4a506b1a16fafa911142ee124febf2c9e", + "sha256:d22fce0b0f5715cdac082e35a9e735a1752dc8585f005d045abb1a7c20e197f9", + "sha256:d3f7e001328bd6466b3414215f66dde3c7c13d8025a9c160a75d7b2687090d15", + "sha256:d3fe667935e9562407c2511570dca14604a654988a13d8725667e95161d92e9b", + "sha256:dabb70a6e3d9c22df50e08dc55b14ca2a99da95a2d941954255ac76fd6982bc5", + "sha256:e2fb8e8158306567a3a9a41670c1ff99d0567d7fc96fa93b7abf8b519a46b250", + "sha256:e96ac6b3169940a8cd57b4f2b8edcad8f5213b60efcd197d59fbe52f0accd66e", + "sha256:fbf649bc77510ef2521cf797700b96167bb77838c40780da7ea3edd8b78044d1" ], "markers": "python_version >= '3.7'", - "version": "==6.3" + "version": "==6.4.post2" } }, "typing-dev": { @@ -3790,11 +3843,11 @@ }, "certifi": { "hashes": [ - "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", - "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", + "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" ], "markers": "python_version >= '3.6'", - "version": "==2024.2.2" + "version": "==2024.6.2" }, "cffi": { "hashes": [ @@ -3952,50 +4005,50 @@ }, "cryptography": { "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" ], "markers": "python_version >= '3.7'", - "version": "==42.0.5" + "version": "==42.0.7" }, "django": { "hashes": [ - "sha256:6e6ff3db2d8dd0c986b4eec8554c8e4f919b5c1ff62a5b4390c17aff2ed6e5c4", - "sha256:ddc24a0a8280a0430baa37aff11f28574720af05888c62b7cfe71d219f4599d3" + "sha256:837e3cf1f6c31347a1396a3f6b65688f2b4bb4a11c580dcb628b5afe527b68a5", + "sha256:a17fcba2aad3fc7d46fdb23215095dbbd64e6174bf4589171e732b18b07e426a" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.2.11" + "version": "==4.2.13" }, "django-filter-stubs": { "hashes": [ @@ -4010,19 +4063,19 @@ "compatible-mypy" ], "hashes": [ - "sha256:084484cbe16a6d388e80ec687e46f529d67a232f3befaf55c936b3b476be289d", - "sha256:b8a792bee526d6cab31e197cb414ee7fa218abd931a50948c66a80b3a2548621" + "sha256:236bc5606e5607cb968f92b648471f9edaa461a774bc013bf9e6bff8730f6bdf", + "sha256:cb0c506cb5c54c64612e4a2ee8d6b913c6178560ec168009fe847c09747c304b" ], "markers": "python_version >= '3.8'", - "version": "==5.0.0" + "version": "==5.0.2" }, "django-stubs-ext": { "hashes": [ - "sha256:5bacfbb498a206d5938454222b843d81da79ea8b6fcd1a59003f529e775bc115", - "sha256:8e1334fdf0c8bff87e25d593b33d4247487338aaed943037826244ff788b56a8" + "sha256:409c62585d7f996cef5c760e6e27ea3ff29f961c943747e67519c837422cad32", + "sha256:8d8efec5a86241266bec94a528fe21258ad90d78c67307f3ae5f36e81de97f12" ], "markers": "python_version >= '3.8'", - "version": "==5.0.0" + "version": "==5.0.2" }, "djangorestframework-stubs": { "extras": [ @@ -4095,10 +4148,11 @@ }, "requests": { "hashes": [ - "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", - "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" ], - "version": "==2.31.0" + "markers": "python_version >= '3.8'", + "version": "==2.32.3" }, "sqlparse": { "hashes": [ @@ -4178,12 +4232,12 @@ }, "types-pillow": { "hashes": [ - "sha256:696e68b9b6a58548fc307a8669830469237c5b11809ddf978ac77fafa79251cd", - "sha256:bd12923093b96c91d523efcdb66967a307f1a843bcfaf2d5a529146c10a9ced3" + "sha256:130b979195465fa1e1676d8e81c9c7c30319e8e95b12fae945e8f0d525213107", + "sha256:33c36494b380e2a269bb742181bea5d9b00820367822dbd3760f07210a1da23d" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==10.2.0.20240423" + "version": "==10.2.0.20240520" }, "types-psycopg2": { "hashes": [ @@ -4196,12 +4250,12 @@ }, "types-pygments": { "hashes": [ - "sha256:b101ca9448aaff52af6966506f1fdd73b1e60a79b8a79a8bace3366cbf1f7ed9", - "sha256:b1d97e905ce36343c7283b0319182ae6d4f967188f361f45502a18ae43e03e1f" + "sha256:11c90bc1737c9af55e5569558b88df7c2233e12325cb516215f722271444e91d", + "sha256:4b4c37812c87bbde687dbf27adf5bac593745a321e57f678dbc311571ba2ac9d" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==2.17.0.20240310" + "version": "==2.18.0.20240506" }, "types-pyopenssl": { "hashes": [ @@ -4239,20 +4293,20 @@ }, "types-requests": { "hashes": [ - "sha256:4428df33c5503945c74b3f42e82b181e86ec7b724620419a2966e2de604ce1a1", - "sha256:6216cdac377c6b9a040ac1c0404f7284bd13199c0e1bb235f4324627e8898cf5" + "sha256:3f98d7bbd0dd94ebd10ff43a7fbe20c3b8528acace6d8efafef0b6a184793f06", + "sha256:ed3946063ea9fbc6b5fc0c44fa279188bae42d582cb63760be6cb4b9d06c3de8" ], "markers": "python_version >= '3.8'", - "version": "==2.31.0.20240406" + "version": "==2.32.0.20240602" }, "types-setuptools": { "hashes": [ - "sha256:a4381e041510755a6c9210e26ad55b1629bc10237aeb9cb8b6bd24996b73db48", - "sha256:a7ba908f1746c4337d13f027fa0f4a5bcad6d1d92048219ba792b3295c58586d" + "sha256:8f5379b9948682d72a9ab531fbe52932e84c4f38deda570255f9bae3edd766bc", + "sha256:e31fee7b9d15ef53980526579ac6089b3ae51a005a281acf97178e90ac71aff6" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==69.5.0.20240423" + "version": "==70.0.0.20240524" }, "types-tqdm": { "hashes": [ @@ -4265,11 +4319,11 @@ }, "typing-extensions": { "hashes": [ - "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", - "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + "sha256:6024b58b69089e5a89c347397254e35f1bf02a907728ec7fee9bf0fe837d203a", + "sha256:915f5e35ff76f56588223f15fdd5938f9a1cf9195c0de25130c627e4d597f6d1" ], "markers": "python_version < '3.11'", - "version": "==4.11.0" + "version": "==4.12.1" }, "urllib3": { "hashes": [ diff --git a/docker/compose/docker-compose.ci-test.yml b/docker/compose/docker-compose.ci-test.yml index ddd4ed06e..d1c75ead2 100644 --- a/docker/compose/docker-compose.ci-test.yml +++ b/docker/compose/docker-compose.ci-test.yml @@ -3,7 +3,6 @@ # Can be used locally or by the CI to start the necessary containers with the # correct networking for the tests -version: "3.7" services: gotenberg: image: docker.io/gotenberg/gotenberg:7.10 @@ -20,7 +19,7 @@ services: - "--log-level=warn" - "--log-format=text" tika: - image: ghcr.io/paperless-ngx/tika:latest + image: docker.io/apache/tika:latest hostname: tika container_name: tika network_mode: host diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml index 16bedb08f..e23fe8b92 100644 --- a/docker/compose/docker-compose.mariadb-tika.yml +++ b/docker/compose/docker-compose.mariadb-tika.yml @@ -30,7 +30,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 @@ -88,7 +87,7 @@ services: - "--chromium-allow-list=file:///tmp/.*" tika: - image: ghcr.io/paperless-ngx/tika:latest + image: docker.io/apache/tika:latest restart: unless-stopped volumes: diff --git a/docker/compose/docker-compose.mariadb.yml b/docker/compose/docker-compose.mariadb.yml index 4bb71522d..0b7a0fd3e 100644 --- a/docker/compose/docker-compose.mariadb.yml +++ b/docker/compose/docker-compose.mariadb.yml @@ -26,7 +26,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 diff --git a/docker/compose/docker-compose.portainer.yml b/docker/compose/docker-compose.portainer.yml index b83a61bcc..621908ff8 100644 --- a/docker/compose/docker-compose.portainer.yml +++ b/docker/compose/docker-compose.portainer.yml @@ -28,7 +28,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 diff --git a/docker/compose/docker-compose.postgres-tika.yml b/docker/compose/docker-compose.postgres-tika.yml index 20060664e..fb129f7a2 100644 --- a/docker/compose/docker-compose.postgres-tika.yml +++ b/docker/compose/docker-compose.postgres-tika.yml @@ -30,7 +30,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 @@ -83,7 +82,7 @@ services: - "--chromium-allow-list=file:///tmp/.*" tika: - image: ghcr.io/paperless-ngx/tika:latest + image: docker.io/apache/tika:latest restart: unless-stopped volumes: diff --git a/docker/compose/docker-compose.postgres.yml b/docker/compose/docker-compose.postgres.yml index 4b22866f4..f0af4e8da 100644 --- a/docker/compose/docker-compose.postgres.yml +++ b/docker/compose/docker-compose.postgres.yml @@ -26,7 +26,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 diff --git a/docker/compose/docker-compose.sqlite-tika.yml b/docker/compose/docker-compose.sqlite-tika.yml index 1dcc5a156..34c8dbfed 100644 --- a/docker/compose/docker-compose.sqlite-tika.yml +++ b/docker/compose/docker-compose.sqlite-tika.yml @@ -30,7 +30,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 @@ -71,7 +70,7 @@ services: - "--chromium-allow-list=file:///tmp/.*" tika: - image: ghcr.io/paperless-ngx/tika:latest + image: docker.io/apache/tika:latest restart: unless-stopped volumes: diff --git a/docker/compose/docker-compose.sqlite.yml b/docker/compose/docker-compose.sqlite.yml index ab4d25b0b..1ca5fe86b 100644 --- a/docker/compose/docker-compose.sqlite.yml +++ b/docker/compose/docker-compose.sqlite.yml @@ -23,7 +23,6 @@ # For more extensive installation and update instructions, refer to the # documentation. -version: "3.4" services: broker: image: docker.io/library/redis:7 diff --git a/docker/wait-for-redis.py b/docker/wait-for-redis.py index 41df5a08b..c3e4f1d59 100755 --- a/docker/wait-for-redis.py +++ b/docker/wait-for-redis.py @@ -4,6 +4,7 @@ Simple script which attempts to ping the Redis broker as set in the environment a certain number of times, waiting a little bit in between """ + import os import sys import time diff --git a/docs/administration.md b/docs/administration.md index f34156898..1286b6933 100644 --- a/docs/administration.md +++ b/docs/administration.md @@ -185,34 +185,12 @@ For PostgreSQL, refer to [Upgrading a PostgreSQL Cluster](https://www.postgresql For MariaDB, refer to [Upgrading MariaDB](https://mariadb.com/kb/en/upgrading/) -## Downgrading Paperless {#downgrade-paperless} +You may also use the exporter and importer with the `--data-only` flag, after creating a new database with the updated version of PostgreSQL or MariaDB. -Downgrades are possible. However, some updates also contain database -migrations (these change the layout of the database and may move data). -In order to move back from a version that applied database migrations, -you'll have to revert the database migration _before_ downgrading, and -then downgrade paperless. +!!! warning -This table lists the compatible versions for each database migration -number. - -| Migration number | Version range | -| ---------------- | --------------- | -| 1011 | 1.0.0 | -| 1012 | 1.1.0 - 1.2.1 | -| 1014 | 1.3.0 - 1.3.1 | -| 1016 | 1.3.2 - current | - -Execute the following management command to migrate your database: - -```shell-session -$ python3 manage.py migrate documents -``` - -!!! note - - Some migrations cannot be undone. The command will issue errors if that - happens. + You should not change any settings, especially paths, when doing this or there is a + risk of data loss ## Management utilities {#management-commands} @@ -269,6 +247,8 @@ optional arguments: -sm, --split-manifest -z, --zip -zn, --zip-name +--data-only +--passphrase ``` `target` is a folder to which the data gets written. This includes @@ -327,6 +307,12 @@ If `-z` or `--zip` is provided, the export will be a zip file in the target directory, named according to the current local date or the value set in `-zn` or `--zip-name`. +If `--data-only` is provided, only the database will be exported. This option is intended +to facilitate database upgrades without needing to clean documents and thumbnails from the media directory. + +If `--passphrase` is provided, it will be used to encrypt certain fields in the export. This value +must be provided to import. If this value is lost, the export cannot be imported. + !!! warning If exporting with the file name format, there may be errors due to @@ -341,15 +327,22 @@ exporter](#exporter) and imports it into paperless. The importer works just like the exporter. You point it at a directory, and the script does the rest of the work: -``` +```shell document_importer source ``` +| Option | Required | Default | Description | +| -------------- | -------- | ------- | ------------------------------------------------------------------------- | +| source | Yes | N/A | The directory containing an export | +| `--data-only` | No | False | If provided, only import data, do not import document files or thumbnails | +| `--passphrase` | No | N/A | If your export was encrypted with a passphrase, must be provided | + When you use the provided docker compose script, put the export inside the `export` folder in your paperless source directory. Specify `../export` as the `source`. -Note that .zip files (as can be generated from the exporter) are not supported. +Note that .zip files (as can be generated from the exporter) are not supported. You must unzip them into +the target directory first. !!! note @@ -359,6 +352,7 @@ Note that .zip files (as can be generated from the exporter) are not supported. !!! warning The importer should be run against a completely empty installation (database and directories) of Paperless-ngx. + If using a data only import, only the database must be empty. ### Document retagger {#retagger} @@ -586,7 +580,7 @@ Enabling encryption is no longer supported. Basic usage to disable encryption of your document store: -(Note: If [`PAPERLESS_PASSPHRASE`](configuration.md#PAPERLESS_PASSPHRASE) isn't set already, you need to specify +(Note: If `PAPERLESS_PASSPHRASE` isn't set already, you need to specify it here) ``` diff --git a/docs/api.md b/docs/api.md index 160b7c07e..94ece85ab 100644 --- a/docs/api.md +++ b/docs/api.md @@ -11,7 +11,7 @@ The API provides the following main endpoints: - `/api/correspondents/`: Full CRUD support. - `/api/custom_fields/`: Full CRUD support. - `/api/documents/`: Full CRUD support, except POSTing new documents. - See [below](#posting-documents-file-uploads). + See [below](#file-uploads). - `/api/document_types/`: Full CRUD support. - `/api/groups/`: Full CRUD support. - `/api/logs/`: Read-Only. @@ -403,7 +403,7 @@ The following methods are supported: - Requires `parameters`: `{ "add_tags": [LIST_OF_TAG_IDS] }` and / or `{ "remove_tags": [LIST_OF_TAG_IDS] }` - `delete` - No `parameters` required -- `redo_ocr` +- `reprocess` - No `parameters` required - `set_permissions` - Requires `parameters`: @@ -417,13 +417,22 @@ The following methods are supported: - The ordering of the merged document is determined by the list of IDs. - Optional `parameters`: - `"metadata_document_id": DOC_ID` apply metadata (tags, correspondent, etc.) from this document to the merged document. + - `"delete_originals": true` to delete the original documents. This requires the calling user being the owner of + all documents that are merged. - `split` - Requires `parameters`: - `"pages": [..]` The list should be a list of pages and/or a ranges, separated by commas e.g. `"[1,2-3,4,5-7]"` + - Optional `parameters`: + - `"delete_originals": true` to delete the original document after consumption. This requires the calling user being the owner of + the document. - The split operation only accepts a single document. - `rotate` - Requires `parameters`: - `"degrees": DEGREES`. Must be an integer i.e. 90, 180, 270 +- `delete_pages` + - Requires `parameters`: + - `"pages": [..]` The list should be a list of integers e.g. `"[2,3,4]"` + - The delete_pages operation only accepts a single document. ### Objects diff --git a/docs/changelog.md b/docs/changelog.md index 57ed6430f..00973128f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,239 @@ # Changelog +## paperless-ngx 2.10.1 + +### Bug Fixes + +- Fix: dont require admin perms to view trash on frontend @shamoon ([#7028](https://github.com/paperless-ngx/paperless-ngx/pull/7028)) + +## paperless-ngx 2.10.0 + +### Features + +- Feature: documents trash aka soft delete [@shamoon](https://github.com/shamoon) ([#6944](https://github.com/paperless-ngx/paperless-ngx/pull/6944)) +- Enhancement: better boolean custom field display [@shamoon](https://github.com/shamoon) ([#7001](https://github.com/paperless-ngx/paperless-ngx/pull/7001)) +- Feature: Allow encrypting sensitive fields in export [@stumpylog](https://github.com/stumpylog) ([#6927](https://github.com/paperless-ngx/paperless-ngx/pull/6927)) +- Enhancement: allow consumption of odg files [@daniel-boehme](https://github.com/daniel-boehme) ([#6940](https://github.com/paperless-ngx/paperless-ngx/pull/6940)) + +### Bug Fixes + +- Fix: Document history could include extra fields [@stumpylog](https://github.com/stumpylog) ([#6989](https://github.com/paperless-ngx/paperless-ngx/pull/6989)) +- Fix: use local pdf worker js [@shamoon](https://github.com/shamoon) ([#6990](https://github.com/paperless-ngx/paperless-ngx/pull/6990)) +- Fix: Revert masking the content field from auditlog [@tribut](https://github.com/tribut) ([#6981](https://github.com/paperless-ngx/paperless-ngx/pull/6981)) +- Fix: respect model permissions for tasks API endpoint [@shamoon](https://github.com/shamoon) ([#6958](https://github.com/paperless-ngx/paperless-ngx/pull/6958)) +- Fix: Make the logging of an email message to be something useful [@stumpylog](https://github.com/stumpylog) ([#6901](https://github.com/paperless-ngx/paperless-ngx/pull/6901)) + +### Documentation + +- Documentation: Corrections and clarifications for Python support [@stumpylog](https://github.com/stumpylog) ([#6995](https://github.com/paperless-ngx/paperless-ngx/pull/6995)) + +### Maintenance + +- Chore(deps): Bump stumpylog/image-cleaner-action from 0.6.0 to 0.7.0 in the actions group [@dependabot](https://github.com/dependabot) ([#6968](https://github.com/paperless-ngx/paperless-ngx/pull/6968)) +- Chore: Configures dependabot to ignore djangorestframework [@stumpylog](https://github.com/stumpylog) ([#6967](https://github.com/paperless-ngx/paperless-ngx/pull/6967)) + +### Dependencies + +
+10 changes + +- Chore(deps): Bump pipenv from 2023.12.1 to 2024.0.1 [@stumpylog](https://github.com/stumpylog) ([#7019](https://github.com/paperless-ngx/paperless-ngx/pull/7019)) +- Chore(deps): Bump the small-changes group with 2 updates [@dependabot](https://github.com/dependabot) ([#7013](https://github.com/paperless-ngx/paperless-ngx/pull/7013)) +- Chore(deps-dev): Bump the development group with 2 updates [@dependabot](https://github.com/dependabot) ([#7012](https://github.com/paperless-ngx/paperless-ngx/pull/7012)) +- Chore(deps-dev): Bump ws from 8.15.1 to 8.17.1 in /src-ui [@dependabot](https://github.com/dependabot) ([#7015](https://github.com/paperless-ngx/paperless-ngx/pull/7015)) +- Chore(deps): Bump urllib3 from 2.2.1 to 2.2.2 [@dependabot](https://github.com/dependabot) ([#7014](https://github.com/paperless-ngx/paperless-ngx/pull/7014)) +- Chore: update packages used by mail parser html template [@shamoon](https://github.com/shamoon) ([#6970](https://github.com/paperless-ngx/paperless-ngx/pull/6970)) +- Chore(deps): Bump stumpylog/image-cleaner-action from 0.6.0 to 0.7.0 in the actions group [@dependabot](https://github.com/dependabot) ([#6968](https://github.com/paperless-ngx/paperless-ngx/pull/6968)) +- Chore(deps-dev): Bump the development group with 3 updates [@dependabot](https://github.com/dependabot) ([#6953](https://github.com/paperless-ngx/paperless-ngx/pull/6953)) +- Chore: Updates to latest Trixie version of Ghostscript 10.03.1 [@stumpylog](https://github.com/stumpylog) ([#6956](https://github.com/paperless-ngx/paperless-ngx/pull/6956)) +- Chore(deps): Bump tornado from 6.4 to 6.4.1 [@dependabot](https://github.com/dependabot) ([#6930](https://github.com/paperless-ngx/paperless-ngx/pull/6930)) +
+ +### All App Changes + +
+17 changes + +- Chore(deps): Bump the small-changes group with 2 updates [@dependabot](https://github.com/dependabot) ([#7013](https://github.com/paperless-ngx/paperless-ngx/pull/7013)) +- Chore(deps-dev): Bump the development group with 2 updates [@dependabot](https://github.com/dependabot) ([#7012](https://github.com/paperless-ngx/paperless-ngx/pull/7012)) +- Chore(deps-dev): Bump ws from 8.15.1 to 8.17.1 in /src-ui [@dependabot](https://github.com/dependabot) ([#7015](https://github.com/paperless-ngx/paperless-ngx/pull/7015)) +- Feature: documents trash aka soft delete [@shamoon](https://github.com/shamoon) ([#6944](https://github.com/paperless-ngx/paperless-ngx/pull/6944)) +- Enhancement: better boolean custom field display [@shamoon](https://github.com/shamoon) ([#7001](https://github.com/paperless-ngx/paperless-ngx/pull/7001)) +- Fix: default order of documents gets lost in QuerySet pipeline [@madduck](https://github.com/madduck) ([#6982](https://github.com/paperless-ngx/paperless-ngx/pull/6982)) +- Fix: Document history could include extra fields [@stumpylog](https://github.com/stumpylog) ([#6989](https://github.com/paperless-ngx/paperless-ngx/pull/6989)) +- Fix: use local pdf worker js [@shamoon](https://github.com/shamoon) ([#6990](https://github.com/paperless-ngx/paperless-ngx/pull/6990)) +- Fix: Revert masking the content field from auditlog [@tribut](https://github.com/tribut) ([#6981](https://github.com/paperless-ngx/paperless-ngx/pull/6981)) +- Chore: update packages used by mail parser html template [@shamoon](https://github.com/shamoon) ([#6970](https://github.com/paperless-ngx/paperless-ngx/pull/6970)) +- Chore(deps-dev): Bump the development group with 3 updates [@dependabot](https://github.com/dependabot) ([#6953](https://github.com/paperless-ngx/paperless-ngx/pull/6953)) +- Fix: respect model permissions for tasks API endpoint [@shamoon](https://github.com/shamoon) ([#6958](https://github.com/paperless-ngx/paperless-ngx/pull/6958)) +- Feature: Allow encrypting sensitive fields in export [@stumpylog](https://github.com/stumpylog) ([#6927](https://github.com/paperless-ngx/paperless-ngx/pull/6927)) +- Enhancement: allow consumption of odg files [@daniel-boehme](https://github.com/daniel-boehme) ([#6940](https://github.com/paperless-ngx/paperless-ngx/pull/6940)) +- Enhancement: use note model permissions for notes [@shamoon](https://github.com/shamoon) ([#6913](https://github.com/paperless-ngx/paperless-ngx/pull/6913)) +- Chore: Resolves test issues with Python 3.12 [@stumpylog](https://github.com/stumpylog) ([#6902](https://github.com/paperless-ngx/paperless-ngx/pull/6902)) +- Fix: Make the logging of an email message to be something useful [@stumpylog](https://github.com/stumpylog) ([#6901](https://github.com/paperless-ngx/paperless-ngx/pull/6901)) +
+ +## paperless-ngx 2.9.0 + +### Features + +- Feature: Allow a data only export/import cycle [@stumpylog](https://github.com/stumpylog) ([#6871](https://github.com/paperless-ngx/paperless-ngx/pull/6871)) +- Change: rename 'redo OCR' to 'reprocess' to clarify behavior [@shamoon](https://github.com/shamoon) ([#6866](https://github.com/paperless-ngx/paperless-ngx/pull/6866)) +- Enhancement: Support custom path for the classification file [@lino-b](https://github.com/lino-b) ([#6858](https://github.com/paperless-ngx/paperless-ngx/pull/6858)) +- Enhancement: default to title/content search, allow choosing full search link from global search [@shamoon](https://github.com/shamoon) ([#6805](https://github.com/paperless-ngx/paperless-ngx/pull/6805)) +- Enhancement: only include correspondent 'last_correspondence' if requested [@shamoon](https://github.com/shamoon) ([#6792](https://github.com/paperless-ngx/paperless-ngx/pull/6792)) +- Enhancement: delete pages PDF action [@shamoon](https://github.com/shamoon) ([#6772](https://github.com/paperless-ngx/paperless-ngx/pull/6772)) +- Enhancement: support custom logo / title on login page [@shamoon](https://github.com/shamoon) ([#6775](https://github.com/paperless-ngx/paperless-ngx/pull/6775)) + +### Bug Fixes + +- Fix: including ordering param for id\_\_in retrievals [@shamoon](https://github.com/shamoon) ([#6875](https://github.com/paperless-ngx/paperless-ngx/pull/6875)) +- Fix: Don't allow the workflow save to override other process updates [@stumpylog](https://github.com/stumpylog) ([#6849](https://github.com/paperless-ngx/paperless-ngx/pull/6849)) +- Fix: consistently use created_date for doc display [@shamoon](https://github.com/shamoon) ([#6758](https://github.com/paperless-ngx/paperless-ngx/pull/6758)) + +### Maintenance + +- Chore: Change the code formatter to Ruff [@stumpylog](https://github.com/stumpylog) ([#6756](https://github.com/paperless-ngx/paperless-ngx/pull/6756)) +- Chore: Backend updates [@stumpylog](https://github.com/stumpylog) ([#6755](https://github.com/paperless-ngx/paperless-ngx/pull/6755)) +- Chore(deps): Bump crowdin/github-action from 1 to 2 in the actions group [@dependabot](https://github.com/dependabot) ([#6881](https://github.com/paperless-ngx/paperless-ngx/pull/6881)) + +### Dependencies + +
+12 changes + +- Chore(deps-dev): Bump jest-preset-angular from 14.0.4 to 14.1.0 in /src-ui in the frontend-jest-dependencies group [@dependabot](https://github.com/dependabot) ([#6879](https://github.com/paperless-ngx/paperless-ngx/pull/6879)) +- Chore: Backend dependencies update [@stumpylog](https://github.com/stumpylog) ([#6892](https://github.com/paperless-ngx/paperless-ngx/pull/6892)) +- Chore(deps): Bump crowdin/github-action from 1 to 2 in the actions group [@dependabot](https://github.com/dependabot) ([#6881](https://github.com/paperless-ngx/paperless-ngx/pull/6881)) +- Chore: Updates Ghostscript to 10.03.1 [@stumpylog](https://github.com/stumpylog) ([#6854](https://github.com/paperless-ngx/paperless-ngx/pull/6854)) +- Chore(deps-dev): Bump the development group across 1 directory with 2 updates [@dependabot](https://github.com/dependabot) ([#6851](https://github.com/paperless-ngx/paperless-ngx/pull/6851)) +- Chore(deps): Bump the small-changes group with 3 updates [@dependabot](https://github.com/dependabot) ([#6843](https://github.com/paperless-ngx/paperless-ngx/pull/6843)) +- Chore(deps): Use psycopg as recommended [@stumpylog](https://github.com/stumpylog) ([#6811](https://github.com/paperless-ngx/paperless-ngx/pull/6811)) +- Chore(deps-dev): Bump the development group with 2 updates [@dependabot](https://github.com/dependabot) ([#6793](https://github.com/paperless-ngx/paperless-ngx/pull/6793)) +- Chore(deps): Bump requests from 2.31.0 to 2.32.0 [@dependabot](https://github.com/dependabot) ([#6795](https://github.com/paperless-ngx/paperless-ngx/pull/6795)) +- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 19 updates [@dependabot](https://github.com/dependabot) ([#6761](https://github.com/paperless-ngx/paperless-ngx/pull/6761)) +- Chore: Backend updates [@stumpylog](https://github.com/stumpylog) ([#6755](https://github.com/paperless-ngx/paperless-ngx/pull/6755)) +- Chore: revert pngx pdf viewer to third party package [@shamoon](https://github.com/shamoon) ([#6741](https://github.com/paperless-ngx/paperless-ngx/pull/6741)) +
+ +### All App Changes + +
+19 changes + +- Chore(deps-dev): Bump jest-preset-angular from 14.0.4 to 14.1.0 in /src-ui in the frontend-jest-dependencies group [@dependabot](https://github.com/dependabot) ([#6879](https://github.com/paperless-ngx/paperless-ngx/pull/6879)) +- Fix: including ordering param for id\_\_in retrievals [@shamoon](https://github.com/shamoon) ([#6875](https://github.com/paperless-ngx/paperless-ngx/pull/6875)) +- Feature: Allow a data only export/import cycle [@stumpylog](https://github.com/stumpylog) ([#6871](https://github.com/paperless-ngx/paperless-ngx/pull/6871)) +- Change: rename 'redo OCR' to 'reprocess' to clarify behavior [@shamoon](https://github.com/shamoon) ([#6866](https://github.com/paperless-ngx/paperless-ngx/pull/6866)) +- Enhancement: Support custom path for the classification file [@lino-b](https://github.com/lino-b) ([#6858](https://github.com/paperless-ngx/paperless-ngx/pull/6858)) +- Chore(deps-dev): Bump the development group across 1 directory with 2 updates [@dependabot](https://github.com/dependabot) ([#6851](https://github.com/paperless-ngx/paperless-ngx/pull/6851)) +- Chore(deps): Bump the small-changes group with 3 updates [@dependabot](https://github.com/dependabot) ([#6843](https://github.com/paperless-ngx/paperless-ngx/pull/6843)) +- Fix: Don't allow the workflow save to override other process updates [@stumpylog](https://github.com/stumpylog) ([#6849](https://github.com/paperless-ngx/paperless-ngx/pull/6849)) +- Chore(deps): Use psycopg as recommended [@stumpylog](https://github.com/stumpylog) ([#6811](https://github.com/paperless-ngx/paperless-ngx/pull/6811)) +- Enhancement: default to title/content search, allow choosing full search link from global search [@shamoon](https://github.com/shamoon) ([#6805](https://github.com/paperless-ngx/paperless-ngx/pull/6805)) +- Enhancement: only include correspondent 'last_correspondence' if requested [@shamoon](https://github.com/shamoon) ([#6792](https://github.com/paperless-ngx/paperless-ngx/pull/6792)) +- Enhancement: accessibility improvements for tags, doc links, dashboard views [@shamoon](https://github.com/shamoon) ([#6786](https://github.com/paperless-ngx/paperless-ngx/pull/6786)) +- Enhancement: delete pages PDF action [@shamoon](https://github.com/shamoon) ([#6772](https://github.com/paperless-ngx/paperless-ngx/pull/6772)) +- Chore(deps-dev): Bump the development group with 2 updates [@dependabot](https://github.com/dependabot) ([#6793](https://github.com/paperless-ngx/paperless-ngx/pull/6793)) +- Enhancement: support custom logo / title on login page [@shamoon](https://github.com/shamoon) ([#6775](https://github.com/paperless-ngx/paperless-ngx/pull/6775)) +- Chore: Change the code formatter to Ruff [@stumpylog](https://github.com/stumpylog) ([#6756](https://github.com/paperless-ngx/paperless-ngx/pull/6756)) +- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 19 updates [@dependabot](https://github.com/dependabot) ([#6761](https://github.com/paperless-ngx/paperless-ngx/pull/6761)) +- Fix: consistently use created_date for doc display [@shamoon](https://github.com/shamoon) ([#6758](https://github.com/paperless-ngx/paperless-ngx/pull/6758)) +- Chore: revert pngx pdf viewer to third party package [@shamoon](https://github.com/shamoon) ([#6741](https://github.com/paperless-ngx/paperless-ngx/pull/6741)) +
+ +## paperless-ngx 2.8.6 + +### Bug Fixes + +- Security: disallow API remote-user auth if disabled [@shamoon](https://github.com/shamoon) ([#6739](https://github.com/paperless-ngx/paperless-ngx/pull/6739)) +- Fix: retain sort field from global search filtering, use FILTER_HAS_TAGS_ALL [@shamoon](https://github.com/shamoon) ([#6737](https://github.com/paperless-ngx/paperless-ngx/pull/6737)) + +### All App Changes + +
+2 changes + +- Security: disallow API remote-user auth if disabled [@shamoon](https://github.com/shamoon) ([#6739](https://github.com/paperless-ngx/paperless-ngx/pull/6739)) +- Fix: retain sort field from global search filtering, use FILTER_HAS_TAGS_ALL [@shamoon](https://github.com/shamoon) ([#6737](https://github.com/paperless-ngx/paperless-ngx/pull/6737)) +
+ +## paperless-ngx 2.8.5 + +### Bug Fixes + +- Fix: restore search highlighting on large cards results [@shamoon](https://github.com/shamoon) ([#6728](https://github.com/paperless-ngx/paperless-ngx/pull/6728)) +- Fix: global search filtering links broken in 2.8.4 [@shamoon](https://github.com/shamoon) ([#6726](https://github.com/paperless-ngx/paperless-ngx/pull/6726)) +- Fix: some buttons incorrectly aligned in 2.8.4 [@shamoon](https://github.com/shamoon) ([#6715](https://github.com/paperless-ngx/paperless-ngx/pull/6715)) +- Fix: don't format ASN as number on dashboard [@shamoon](https://github.com/shamoon) ([#6708](https://github.com/paperless-ngx/paperless-ngx/pull/6708)) + +### All App Changes + +
+4 changes + +- Fix: restore search highlighting on large cards results [@shamoon](https://github.com/shamoon) ([#6728](https://github.com/paperless-ngx/paperless-ngx/pull/6728)) +- Fix: global search filtering links broken in 2.8.4 [@shamoon](https://github.com/shamoon) ([#6726](https://github.com/paperless-ngx/paperless-ngx/pull/6726)) +- Fix: some buttons incorrectly aligned in 2.8.4 [@shamoon](https://github.com/shamoon) ([#6715](https://github.com/paperless-ngx/paperless-ngx/pull/6715)) +- Fix: don't format ASN as number on dashboard [@shamoon](https://github.com/shamoon) ([#6708](https://github.com/paperless-ngx/paperless-ngx/pull/6708)) +
+ +## paperless-ngx 2.8.4 + +### Features + +- Enhancement: display current ASN in statistics [@darmiel](https://github.com/darmiel) ([#6692](https://github.com/paperless-ngx/paperless-ngx/pull/6692)) +- Enhancement: global search tweaks [@shamoon](https://github.com/shamoon) ([#6674](https://github.com/paperless-ngx/paperless-ngx/pull/6674)) + +### Bug Fixes + +- Security: Correctly disable in pdfjs [@shamoon](https://github.com/shamoon) ([#6702](https://github.com/paperless-ngx/paperless-ngx/pull/6702)) +- Fix: history timestamp tooltip illegible in dark mode [@shamoon](https://github.com/shamoon) ([#6696](https://github.com/paperless-ngx/paperless-ngx/pull/6696)) +- Fix: only count inbox documents from inbox tags with permissions [@shamoon](https://github.com/shamoon) ([#6670](https://github.com/paperless-ngx/paperless-ngx/pull/6670)) + +### All App Changes + +
+5 changes + +- Enhancement: global search tweaks [@shamoon](https://github.com/shamoon) ([#6674](https://github.com/paperless-ngx/paperless-ngx/pull/6674)) +- Security: Correctly disable in pdfjs [@shamoon](https://github.com/shamoon) ([#6702](https://github.com/paperless-ngx/paperless-ngx/pull/6702)) +- Fix: history timestamp tooltip illegible in dark mode [@shamoon](https://github.com/shamoon) ([#6696](https://github.com/paperless-ngx/paperless-ngx/pull/6696)) +- Enhancement: display current ASN in statistics [@darmiel](https://github.com/darmiel) ([#6692](https://github.com/paperless-ngx/paperless-ngx/pull/6692)) +- Fix: only count inbox documents from inbox tags with permissions [@shamoon](https://github.com/shamoon) ([#6670](https://github.com/paperless-ngx/paperless-ngx/pull/6670)) +
+ +## paperless-ngx 2.8.3 + +### Bug Fixes + +- Fix: respect superuser for document history [@shamoon](https://github.com/shamoon) ([#6661](https://github.com/paperless-ngx/paperless-ngx/pull/6661)) +- Fix: allow 0 in monetary field [@shamoon](https://github.com/shamoon) ([#6658](https://github.com/paperless-ngx/paperless-ngx/pull/6658)) +- Fix: custom field removal doesn't always trigger change detection [@shamoon](https://github.com/shamoon) ([#6653](https://github.com/paperless-ngx/paperless-ngx/pull/6653)) +- Fix: Downgrade and lock lxml [@stumpylog](https://github.com/stumpylog) ([#6655](https://github.com/paperless-ngx/paperless-ngx/pull/6655)) +- Fix: correctly handle global search esc key when open and button foucsed [@shamoon](https://github.com/shamoon) ([#6644](https://github.com/paperless-ngx/paperless-ngx/pull/6644)) +- Fix: consistent monetary field display in list and cards [@shamoon](https://github.com/shamoon) ([#6645](https://github.com/paperless-ngx/paperless-ngx/pull/6645)) +- Fix: doc links and more illegible in light mode [@shamoon](https://github.com/shamoon) ([#6643](https://github.com/paperless-ngx/paperless-ngx/pull/6643)) +- Fix: Allow auditlog to be disabled [@stumpylog](https://github.com/stumpylog) ([#6638](https://github.com/paperless-ngx/paperless-ngx/pull/6638)) + +### Documentation + +- Chore(docs): Update the sample Compose file to latest database [@stumpylog](https://github.com/stumpylog) ([#6639](https://github.com/paperless-ngx/paperless-ngx/pull/6639)) + +### All App Changes + +
+7 changes + +- Fix: respect superuser for document history [@shamoon](https://github.com/shamoon) ([#6661](https://github.com/paperless-ngx/paperless-ngx/pull/6661)) +- Fix: allow 0 in monetary field [@shamoon](https://github.com/shamoon) ([#6658](https://github.com/paperless-ngx/paperless-ngx/pull/6658)) +- Fix: custom field removal doesn't always trigger change detection [@shamoon](https://github.com/shamoon) ([#6653](https://github.com/paperless-ngx/paperless-ngx/pull/6653)) +- Fix: correctly handle global search esc key when open and button foucsed [@shamoon](https://github.com/shamoon) ([#6644](https://github.com/paperless-ngx/paperless-ngx/pull/6644)) +- Fix: consistent monetary field display in list and cards [@shamoon](https://github.com/shamoon) ([#6645](https://github.com/paperless-ngx/paperless-ngx/pull/6645)) +- Fix: doc links and more illegible in light mode [@shamoon](https://github.com/shamoon) ([#6643](https://github.com/paperless-ngx/paperless-ngx/pull/6643)) +- Fix: Allow auditlog to be disabled [@stumpylog](https://github.com/stumpylog) ([#6638](https://github.com/paperless-ngx/paperless-ngx/pull/6638)) +
+ ## paperless-ngx 2.8.2 ### Bug Fixes diff --git a/docs/configuration.md b/docs/configuration.md index bbe46f4de..0c3345145 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -219,10 +219,10 @@ database, classification model, etc). Defaults to "../data/", relative to the "src" directory. -#### [`PAPERLESS_TRASH_DIR=`](#PAPERLESS_TRASH_DIR) {#PAPERLESS_TRASH_DIR} +#### [`PAPERLESS_EMPTY_TRASH_DIR=`](#PAPERLESS_EMPTY_TRASH_DIR) {#PAPERLESS_EMPTY_TRASH_DIR} -: Instead of removing deleted documents, they are moved to this -directory. +: When documents are deleted (e.g. after emptying the trash) the original files will be moved here +instead of being removed from the filesystem. Only the original version is kept. This must be writeable by the user running paperless. When running inside docker, ensure that this path is within a permanent volume @@ -230,7 +230,9 @@ directory. Note that the directory must exist prior to using this setting. - Defaults to empty (i.e. really delete documents). + Defaults to empty (i.e. really delete files). + + This setting was previously named PAPERLESS_TRASH_DIR. #### [`PAPERLESS_MEDIA_ROOT=`](#PAPERLESS_MEDIA_ROOT) {#PAPERLESS_MEDIA_ROOT} @@ -288,6 +290,12 @@ this folder is no longer needed and can be removed manually. Defaults to `/usr/share/nltk_data` +#### [`PAPERLESS_MODEL_FILE=`](#PAPERLESS_MODEL_FILE) {#PAPERLESS_MODEL_FILE} + +: This is where paperless will store the classification model. + + Defaults to `PAPERLESS_DATA_DIR/classification_model.pickle`. + ## Logging #### [`PAPERLESS_LOGROTATE_MAX_SIZE=`](#PAPERLESS_LOGROTATE_MAX_SIZE) {#PAPERLESS_LOGROTATE_MAX_SIZE} @@ -616,6 +624,8 @@ parsing documents. Keep in mind that Tesseract uses much more CPU time with multiple languages enabled. + If you are including languages that are not installed by default, you will need to also set [`PAPERLESS_OCR_LANGUAGES`](configuration.md#PAPERLESS_OCR_LANGUAGES) for docker deployments or install the tesseract language packages manually for bare metal installations. + Defaults to "eng". !!! note @@ -1354,6 +1364,20 @@ processing. This only has an effect if Defaults to false. +## Trash + +#### [`EMPTY_TRASH_DELAY=`](#EMPTY_TRASH_DELAY) {#EMPTY_TRASH_DELAY} + +: Sets how long in days documents remain in the 'trash' before they are permanently deleted. + + Defaults to 30 days, minimum of 1 day. + +#### [`PAPERLESS_EMPTY_TRASH_TASK_CRON=`](#PAPERLESS_EMPTY_TRASH_TASK_CRON) {#PAPERLESS_EMPTY_TRASH_TASK_CRON} + +: Configures the schedule to empty the trash of expired deleted documents. + + Defaults to `0 1 * * *`, once per day. + ## Binaries There are a few external software packages that Paperless expects to diff --git a/docs/development.md b/docs/development.md index a87641ded..bc9ef4c2b 100644 --- a/docs/development.md +++ b/docs/development.md @@ -47,7 +47,7 @@ early on. Once installed, hooks will run when you commit. If the formatting isn't quite right or a linter catches something, the commit will be rejected. You'll need to look at the output and fix the issue. Some hooks, such -as the Python formatting tool `black`, will format failing +as the Python linting and formatting tool `ruff`, will format failing files, so all you need to do is `git add` those files again and retry your commit. @@ -81,10 +81,6 @@ first-time setup. !!! note Using a virtual environment is highly recommended. You can spawn one via `pipenv shell`. - Make sure you're using Python 3.10.x or lower. Otherwise you might - get issues with building dependencies. You can use - [pyenv](https://github.com/pyenv/pyenv) to install a specific - Python version. 5. Install pre-commit hooks: diff --git a/docs/setup.md b/docs/setup.md index 6d1dc553c..b0a0a5fed 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -250,9 +250,14 @@ a minimal installation of Debian/Buster, which is the current stable release at the time of writing. Windows is not and will never be supported. +Paperless requires Python 3. At this time, 3.9 - 3.11 are tested versions. +Newer versions may work, but some dependencies may not fully support newer versions. +Support for older Python versions may be dropped as they reach end of life or as newer versions +are released, dependency support is confirmed, etc. + 1. Install dependencies. Paperless requires the following packages. - - `python3` - 3.9 - 3.11 are supported + - `python3` - `python3-pip` - `python3-dev` - `default-libmysqlclient-dev` for MariaDB @@ -300,8 +305,17 @@ supported. - `libatlas-base-dev` - `libxslt1-dev` - You will also need `build-essential`, `python3-setuptools` and - `python3-wheel` for installing some of the python dependencies. + You will also need these for installing some of the python dependencies: + + - `build-essential` + - `python3-setuptools` + - `python3-wheel` + + Use this list for your preferred package management: + + ``` + build-essential python3-setuptools python3-wheel + ``` 2. Install `redis` >= 6.0 and configure it to start automatically. @@ -401,8 +415,7 @@ supported. sudo chown paperless:paperless /opt/paperless/consume ``` -8. Install python requirements from the `requirements.txt` file. It is - up to you if you wish to use a virtual environment or not. First you should update your pip, so it gets the actual packages. +8. Install python requirements from the `requirements.txt` file. ```shell-session sudo -Hu paperless pip3 install -r requirements.txt @@ -411,6 +424,12 @@ supported. This will install all python dependencies in the home directory of the new paperless user. + !!! tip + + It is up to you if you wish to use a virtual environment or not for the Python + dependencies. This is an alternative to the above and may require adjusting + the example scripts to utilize the virtual environment paths + 9. Go to `/opt/paperless/src`, and execute the following commands: ```bash @@ -667,24 +686,37 @@ commands as well. 1. Stop and remove the paperless container 2. If using an external database, stop the container 3. Update Redis configuration - a) If `REDIS_URL` is already set, change it to [`PAPERLESS_REDIS`](configuration.md#PAPERLESS_REDIS) - and continue to step 4. - b) Otherwise, in the `docker-compose.yml` add a new service for - Redis, following [the example compose - files](https://github.com/paperless-ngx/paperless-ngx/tree/main/docker/compose) - c) Set the environment variable [`PAPERLESS_REDIS`](configuration.md#PAPERLESS_REDIS) so it points to - the new Redis container + + 1. If `REDIS_URL` is already set, change it to [`PAPERLESS_REDIS`](configuration.md#PAPERLESS_REDIS) + and continue to step 4. + + 1. Otherwise, in the `docker-compose.yml` add a new service for + Redis, following [the example compose + files](https://github.com/paperless-ngx/paperless-ngx/tree/main/docker/compose) + + 1. Set the environment variable [`PAPERLESS_REDIS`](configuration.md#PAPERLESS_REDIS) so it points to + the new Redis container + 4. Update user mapping - a) If set, change the environment variable `PUID` to `USERMAP_UID` - b) If set, change the environment variable `PGID` to `USERMAP_GID` + + 1. If set, change the environment variable `PUID` to `USERMAP_UID` + + 1. If set, change the environment variable `PGID` to `USERMAP_GID` + 5. Update configuration paths - a) Set the environment variable [`PAPERLESS_DATA_DIR`](configuration.md#PAPERLESS_DATA_DIR) to `/config` + + 1. Set the environment variable [`PAPERLESS_DATA_DIR`](configuration.md#PAPERLESS_DATA_DIR) to `/config` + 6. Update media paths - a) Set the environment variable [`PAPERLESS_MEDIA_ROOT`](configuration.md#PAPERLESS_MEDIA_ROOT) to - `/data/media` + + 1. Set the environment variable [`PAPERLESS_MEDIA_ROOT`](configuration.md#PAPERLESS_MEDIA_ROOT) to + `/data/media` + 7. Update timezone - a) Set the environment variable [`PAPERLESS_TIME_ZONE`](configuration.md#PAPERLESS_TIME_ZONE) to the same - value as `TZ` + + 1. Set the environment variable [`PAPERLESS_TIME_ZONE`](configuration.md#PAPERLESS_TIME_ZONE) to the same + value as `TZ` + 8. Modify the `image:` to point to `ghcr.io/paperless-ngx/paperless-ngx:latest` or a specific version if preferred. diff --git a/docs/usage.md b/docs/usage.md index 52713fb86..034447d6e 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -421,13 +421,12 @@ to optionally attach data to documents which does not fit in the existing set of Paperless-ngx provides. 1. First, create a custom field (under "Manage"), with a given name and data type. This could be something like "Invoice Number" or "Date Paid", with a data type of "Number", "Date", "String", etc. -2. Once created, a field can be used with documents and data stored. To do so, use the "Custom Fields" menu on the document detail page, choose your existing field and click "Add". Once the field is visible in the form you can enter the appropriate - data which will be validated according to the custom field "data type". +2. Once created, a field can be used with documents and data stored. To do so, use the "Custom Fields" menu on the document detail page, choose your existing field from the dropdown. Once the field is visible in the form you can enter the appropriate data which will be validated according to the custom field "data type". 3. Fields can be removed by hovering over the field name revealing a "Remove" button. !!! important - Added / removed fields, as well as any data is not saved to the document until you + Added / removed fields, as well as any data, is not saved to the document until you actually hit the "Save" button, similar to other changes on the document details page. !!! note @@ -462,15 +461,16 @@ Paperless-ngx added the ability to create shareable links to files in version 2. ## PDF Actions -Paperless-ngx supports 3 basic editing operations for PDFs (these operations cannot be performed on non-PDF files): +Paperless-ngx supports four basic editing operations for PDFs (these operations currently cannot be performed on non-PDF files): -- Merging documents: available when selecting multiple documents for 'bulk editing' +- Merging documents: available when selecting multiple documents for 'bulk editing'. - Rotating documents: available when selecting multiple documents for 'bulk editing' and from an individual document's details page. -- Splitting documents: available from an individual document's details page +- Splitting documents: available from an individual document's details page. +- Deleting pages: available from an individual document's details page. !!! important - Note that rotation alters the Paperless-ngx _original_ file, which would, for example, invalidate a digital signature. + Note that rotation and deleting pages alter the Paperless-ngx _original_ file, which would, for example, invalidate a digital signature. ## Document History @@ -478,6 +478,15 @@ As of version 2.7, Paperless-ngx automatically records all changes to a document Changes to documents are visible under the "History" tab. Note that certain changes such as those made by workflows, record the 'actor' as "System". +## Document Trash + +When you first delete a document it is moved to the 'trash' until either it is explicitly deleted or it is automatically removed after a set amount of time has passed. +You can set how long documents remain in the trash before being automatically deleted with [`EMPTY_TRASH_DELAY`](configuration.md#EMPTY_TRASH_DELAY), which defaults +to 30 days. Until the file is actually deleted (e.g. the trash is emptied), all files and database content remains intact and can be restored at any point up until that time. + +Additionally you may configure a directory where deleted files are moved to when they the trash is emptied with [`PAPERLESS_EMPTY_TRASH_DIR`](configuration.md#PAPERLESS_EMPTY_TRASH_DIR). +Note that the empty trash directory only stores the original file, the archive file and all database information is permanently removed once a document is fully deleted. + ## Best practices {#basic-searching} Paperless offers a couple tools that help you organize your document diff --git a/paperless-ngx.code-workspace b/paperless-ngx.code-workspace index 7030ae655..85f5a836b 100644 --- a/paperless-ngx.code-workspace +++ b/paperless-ngx.code-workspace @@ -31,6 +31,11 @@ "**/.venv": true, "**/.coverage": true, "**/coverage.json": true - } + }, + "python.defaultInterpreterPath": ".venv/bin/python3", + }, + "extensions": { + "recommendations": ["ms-python.python", "charliermarsh.ruff", "editorconfig.editorconfig"], + "unwantedRecommendations": ["ms-python.black-formatter"] } } diff --git a/paperless.conf.example b/paperless.conf.example index db557a7b6..63ee7be22 100644 --- a/paperless.conf.example +++ b/paperless.conf.example @@ -19,7 +19,7 @@ #PAPERLESS_CONSUMPTION_DIR=../consume #PAPERLESS_DATA_DIR=../data -#PAPERLESS_TRASH_DIR= +#PAPERLESS_EMPTY_TRASH_DIR= #PAPERLESS_MEDIA_ROOT=../media #PAPERLESS_STATICDIR=../static #PAPERLESS_FILENAME_FORMAT= diff --git a/scripts/start_services.sh b/scripts/start_services.sh index ea0c11cde..4fe7273ac 100755 --- a/scripts/start_services.sh +++ b/scripts/start_services.sh @@ -3,4 +3,4 @@ docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -v paperless_pgdata:/var/lib/postgresql/data -d postgres:15 docker run -d -p 6379:6379 redis:latest docker run -p 3000:3000 -d gotenberg/gotenberg:7.8 gotenberg --chromium-disable-javascript=true --chromium-allow-list="file:///tmp/.*" -docker run -p 9998:9998 -d ghcr.io/paperless-ngx/tika:latest +docker run -p 9998:9998 -d docker.io/apache/tika:latest diff --git a/src-ui/angular.json b/src-ui/angular.json index 49e419879..4b1848953 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -76,8 +76,7 @@ ], "scripts": [], "allowedCommonJsDependencies": [ - "pdfjs-dist", - "pdfjs-dist/web/pdf_viewer", + "ng2-pdf-viewer", "filesize", "file-saver" ], diff --git a/src-ui/e2e/document-detail/document-detail.spec.ts b/src-ui/e2e/document-detail/document-detail.spec.ts index 0cd45a058..7f5b28c47 100644 --- a/src-ui/e2e/document-detail/document-detail.spec.ts +++ b/src-ui/e2e/document-detail/document-detail.spec.ts @@ -71,7 +71,7 @@ test('should show a mobile preview', async ({ page }) => { await page.setViewportSize({ width: 400, height: 1000 }) await expect(page.getByRole('tab', { name: 'Preview' })).toBeVisible() await page.getByRole('tab', { name: 'Preview' }).click() - await page.waitForSelector('pngx-pdf-viewer') + await page.waitForSelector('pdf-viewer') }) test('should show a list of notes', async ({ page }) => { diff --git a/src-ui/jest.config.js b/src-ui/jest.config.js index b544a4767..78edc0822 100644 --- a/src-ui/jest.config.js +++ b/src-ui/jest.config.js @@ -7,7 +7,6 @@ module.exports = { 'abstract-name-filter-service', 'abstract-paperless-service', ], - coveragePathIgnorePatterns: ['/src/app/components/common/pdf-viewer/*'], transformIgnorePatterns: [`/node_modules/(?!.*\\.mjs$|lodash-es)`], moduleNameMapper: { '^src/(.*)': '/src/$1', diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 4be198d69..492c160c9 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -240,18 +240,30 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -262,21 +274,21 @@ Could not add : src/app/app.component.ts - 107 + 109 Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -295,7 +307,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -330,7 +342,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -338,7 +350,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -357,74 +369,74 @@ Prev src/app/app.component.ts - 158 + 160 Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 End src/app/app.component.ts - 160 + 162 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 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 - 173 + 175 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 - 178 + 180 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 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 - 191 + 193 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 - 196 + 198 Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -435,14 +447,14 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -453,28 +465,28 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Thank you! 🙏 src/app/app.component.ts - 236 + 238 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 - 238 + 240 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 @@ -491,33 +503,6 @@ 4 - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - Read the documentation about this setting @@ -540,7 +525,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 @@ -551,7 +536,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -599,7 +584,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -693,12 +678,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -729,7 +718,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -991,13 +980,6 @@ 195 - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Apply on close @@ -1013,21 +995,50 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1046,14 +1057,14 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1069,7 +1080,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1108,28 +1119,28 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1140,18 +1151,18 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1182,11 +1193,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1217,14 +1228,14 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1243,56 +1254,56 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1303,14 +1314,14 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1321,7 +1332,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1332,7 +1343,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1343,12 +1354,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1406,7 +1421,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1517,42 +1548,42 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Table src/app/components/admin/settings/settings.component.html - 369 + 385 Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1563,25 +1594,25 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1666,7 +1697,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1677,7 +1708,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1688,35 +1719,35 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1727,7 +1758,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 @@ -1751,6 +1782,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1774,6 +1809,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2031,6 +2070,188 @@ 141 + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + + + days + + src/app/components/admin/trash/trash.component.html + 58 + + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 77 + + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Users & Groups @@ -2113,20 +2334,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2237,49 +2454,6 @@ 115 - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Proceed @@ -2292,27 +2466,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2427,11 +2605,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 @@ -2606,42 +2784,42 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 @@ -2671,41 +2849,34 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 - - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 + 26 Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2732,113 +2903,113 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 @@ -2888,6 +3059,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -2908,6 +3083,51 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + + + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + Documents: @@ -2930,44 +3150,25 @@ 24 + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 - - - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 + 25 @@ -2977,6 +3178,13 @@ 28 + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + View @@ -4435,6 +4643,24 @@ 158 + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + No documents found @@ -4532,6 +4758,13 @@ 15 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Filter documents with these Tags @@ -4539,13 +4772,6 @@ 41 - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - What's this? @@ -5140,6 +5366,51 @@ 39 + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + View Preview @@ -5343,8 +5614,8 @@ 36 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5383,15 +5654,22 @@ 114 + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5402,21 +5680,21 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5439,21 +5717,21 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -5480,7 +5758,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -5507,7 +5785,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -5530,14 +5808,14 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -5548,175 +5826,175 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 History src/app/components/document-detail/document-detail.component.html - 290 + 294 Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 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 - 355 + 367 Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -5727,196 +6005,213 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 - - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 + 777 - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + + + Reprocess operation 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 + 831 + Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 - - - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 + 1151 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 + + + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 @@ -6242,71 +6537,60 @@ 571,575 - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - - This operation will permanently redo OCR 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 - 752 + 756 This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 + + + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 - - - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 + 825 @@ -6327,37 +6611,8 @@ 74 - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -6960,28 +7215,28 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 1f202938c..cceef05dd 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -9,15 +9,15 @@ "version": "0.0.0", "hasInstallScript": true, "dependencies": { - "@angular/cdk": "^17.3.6", - "@angular/common": "~17.3.7", - "@angular/compiler": "~17.3.7", - "@angular/core": "~17.3.7", - "@angular/forms": "~17.3.7", - "@angular/localize": "~17.3.7", - "@angular/platform-browser": "~17.3.7", - "@angular/platform-browser-dynamic": "~17.3.7", - "@angular/router": "~17.3.7", + "@angular/cdk": "^17.3.10", + "@angular/common": "~17.3.9", + "@angular/compiler": "~17.3.9", + "@angular/core": "~17.3.9", + "@angular/forms": "~17.3.9", + "@angular/localize": "~17.3.9", + "@angular/platform-browser": "~17.3.9", + "@angular/platform-browser-dynamic": "~17.3.9", + "@angular/router": "~17.3.9", "@ng-bootstrap/ng-bootstrap": "^16.0.0", "@ng-select/ng-select": "^12.0.7", "@ngneat/dirty-check-forms": "^3.0.3", @@ -25,13 +25,13 @@ "bootstrap": "^5.3.3", "file-saver": "^2.0.5", "mime-names": "^1.0.0", + "ng2-pdf-viewer": "^10.2.2", "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", "ngx-cookie-service": "^17.1.0", "ngx-file-drop": "^16.0.0", "ngx-filesize": "^3.0.3", - "ngx-ui-tour-ng-bootstrap": "^14.0.2", - "pdfjs-dist": "^3.11.174", + "ngx-ui-tour-ng-bootstrap": "^14.0.3", "rxjs": "^7.8.1", "tslib": "^2.6.2", "uuid": "^9.0.1", @@ -39,13 +39,13 @@ }, "devDependencies": { "@angular-builders/jest": "17.0.3", - "@angular-devkit/build-angular": "~17.3.6", - "@angular-eslint/builder": "17.3.0", - "@angular-eslint/eslint-plugin": "17.3.0", - "@angular-eslint/eslint-plugin-template": "17.3.0", - "@angular-eslint/schematics": "17.3.0", - "@angular-eslint/template-parser": "17.3.0", - "@angular/cli": "~17.3.6", + "@angular-devkit/build-angular": "~17.3.7", + "@angular-eslint/builder": "17.4.1", + "@angular-eslint/eslint-plugin": "17.4.1", + "@angular-eslint/eslint-plugin-template": "17.4.1", + "@angular-eslint/schematics": "17.4.1", + "@angular-eslint/template-parser": "17.4.1", + "@angular/cli": "~17.3.7", "@angular/compiler-cli": "~17.3.2", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", @@ -56,7 +56,7 @@ "eslint": "^8.57.0", "jest": "29.7.0", "jest-environment-jsdom": "^29.7.0", - "jest-preset-angular": "^14.0.0", + "jest-preset-angular": "^14.1.0", "jest-websocket-mock": "^2.5.0", "patch-package": "^8.0.0", "ts-node": "~10.9.1", @@ -122,13 +122,41 @@ "jest": ">=29" } }, - "node_modules/@angular-devkit/architect": { - "version": "0.1703.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.6.tgz", - "integrity": "sha512-Ck501FD/QuOjeKVFs7hU92w8+Ffetv0d5Sq09XY2/uygo5c/thMzp9nkevaIWBxUSeU5RqYZizDrhFVgYzbbOw==", + "node_modules/@angular-builders/jest/node_modules/jest-preset-angular": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.0.3.tgz", + "integrity": "sha512-usgBL7x0rXMnMSx8iEFeOozj50W6fp+YAmQcQBUdAXhN+PAXRy4UXL6I/rfcAOU09rnnq7RKsLsmhpp/fFEuag==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.6", + "bs-logger": "^0.2.6", + "esbuild-wasm": ">=0.15.13", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" + }, + "engines": { + "node": "^14.15.0 || >=16.10.0" + }, + "optionalDependencies": { + "esbuild": ">=0.15.13" + }, + "peerDependencies": { + "@angular-devkit/build-angular": ">=15.0.0 <18.0.0", + "@angular/compiler-cli": ">=15.0.0 <18.0.0", + "@angular/core": ">=15.0.0 <18.0.0", + "@angular/platform-browser-dynamic": ">=15.0.0 <18.0.0", + "jest": "^29.0.0", + "typescript": ">=4.8" + } + }, + "node_modules/@angular-devkit/architect": { + "version": "0.1703.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.7.tgz", + "integrity": "sha512-SwXbdsZqEE3JtvujCLChAii+FA20d1931VDjDYffrGWdQEViTBAr4NKtDr/kOv8KkgiL3fhGibPnRNUHTeAMtg==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "17.3.7", "rxjs": "7.8.1" }, "engines": { @@ -138,15 +166,15 @@ } }, "node_modules/@angular-devkit/build-angular": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.3.6.tgz", - "integrity": "sha512-K4CEZvhQZUUOpmXPVoI1YBM8BARbIlqE6FZRxakmnr+YOtVTYE5s+Dr1wgja8hZIohNz6L7j167G9Aut7oPU/w==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.3.7.tgz", + "integrity": "sha512-AsV80kiFMIPIhm3uzJgOHDj4u6JteUkZedPTKAFFFJC7CTat1luW5qx306vfF7wj62aMvUl5g9HFWaeLghTQGA==", "dev": true, "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1703.6", - "@angular-devkit/build-webpack": "0.1703.6", - "@angular-devkit/core": "17.3.6", + "@angular-devkit/architect": "0.1703.7", + "@angular-devkit/build-webpack": "0.1703.7", + "@angular-devkit/core": "17.3.7", "@babel/core": "7.24.0", "@babel/generator": "7.23.6", "@babel/helper-annotate-as-pure": "7.22.5", @@ -157,7 +185,7 @@ "@babel/preset-env": "7.24.0", "@babel/runtime": "7.24.0", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "17.3.6", + "@ngtools/webpack": "17.3.7", "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", "autoprefixer": "10.4.18", @@ -725,12 +753,12 @@ "dev": true }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1703.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1703.6.tgz", - "integrity": "sha512-pJu0et2SiF0kfXenHSTtAART0omzbWpLgBfeUo4hBh4uwX5IaT+mRpYpr8gCXMq+qsjoQp3HobSU3lPDeBn+bg==", + "version": "0.1703.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1703.7.tgz", + "integrity": "sha512-gpt2Ia5I1gmdp3hdbtB7tkZTba5qWmKeVhlCYswa/LvbceKmkjedoeNRAoyr1UKM9GeGqt6Xl1B2eHzCH+ykrg==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1703.6", + "@angular-devkit/architect": "0.1703.7", "rxjs": "7.8.1" }, "engines": { @@ -744,9 +772,9 @@ } }, "node_modules/@angular-devkit/core": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.6.tgz", - "integrity": "sha512-FVbkT9dEwHEvjnxr4mvMNSMg2bCFoGoP4X68xXU9dhLEUpC05opLvfbaR3Qh543eCJ5AstosBFVzB/krfIkOvA==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.7.tgz", + "integrity": "sha512-qpZ7BShyqS/Jqld36E7kL02cyb2pjn1Az1p9439SbP8nsvJgYlsyjwYK2Kmcn/Wi+TZGIKxkqxgBBw9vqGgeJw==", "dev": true, "dependencies": { "ajv": "8.12.0", @@ -777,12 +805,12 @@ "dev": true }, "node_modules/@angular-devkit/schematics": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.6.tgz", - "integrity": "sha512-2G1YuPInd8znG7uUgKOS7z72Aku50lTzB/2csWkWPJLAFkh7vKC8QZ40x8S1nC9npVYPhI5CRLX/HVpBh9CyxA==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.7.tgz", + "integrity": "sha512-d7NKSwstdxYLYmPsbcYO3GOFNfXxXwOyHxSqDa1JNKoSzMdbLj4tvlCpfXw0ThNM7gioMx8aLBaaH1ac+yk06Q==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.6", + "@angular-devkit/core": "17.3.7", "jsonc-parser": "3.2.1", "magic-string": "0.30.8", "ora": "5.4.1", @@ -801,13 +829,13 @@ "dev": true }, "node_modules/@angular-eslint/builder": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-17.3.0.tgz", - "integrity": "sha512-JXSZE7+KA3UGU6jwc0v9lwOIMptosrvLIOXGlXqrhHWEXfkfu3ENPq1Lm3K8jLndQ57XueEhC+Nab/AuUiWA/Q==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-17.4.1.tgz", + "integrity": "sha512-UVnErsAGXTi8OChkoSxDVVGV2jkFpTaXQT+0fgapSwaOt3Ki7BVwJJoNaX0Zs01c64bjNPZ5ONb/i6nC8QiP9Q==", "dev": true, "dependencies": { - "@nx/devkit": "^17.2.8 || ^18.0.0", - "nx": "^17.2.8 || ^18.0.0" + "@nx/devkit": "^17.2.8 || ^18.0.0 || ^19.0.0", + "nx": "^17.2.8 || ^18.0.0 || ^19.0.0" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -815,19 +843,20 @@ } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-17.3.0.tgz", - "integrity": "sha512-ejfNzRuBeHUV8m2fkgs+M809rj5STuCuQo4fdfc6ccQpzXDI6Ha7BKpTznWfg5g529q/wrkoGSGgFxU9Yc2/dQ==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-17.4.1.tgz", + "integrity": "sha512-QKQGspxsyMHRwvzqo+Fj42TS/vmnwOHuWC6EN+5KBx3cuImahqFHQW842zVy9f65jfH2xDnNWJ+NW+Tzcgg+pQ==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-17.3.0.tgz", - "integrity": "sha512-81cQbOEPoQupFX8WmpqZn+y8VA7JdVRGBtt+uJNKBXcJknTpPWdLBZRFlgVakmC24iEZ0Fint/N3NBBQI3mz2A==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-17.4.1.tgz", + "integrity": "sha512-05bN1UB4H2CuX7Sw6fz+rMobsa+Bl3g15IYldH08hbJSnVemO8mf86bIjRN2Th79sO9WOiXXimnfIt7KRf8l0Q==", "dev": true, "dependencies": { - "@angular-eslint/utils": "17.3.0", - "@typescript-eslint/utils": "7.2.0" + "@angular-eslint/bundled-angular-compiler": "17.4.1", + "@angular-eslint/utils": "17.4.1", + "@typescript-eslint/utils": "7.8.0" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -835,15 +864,15 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-17.3.0.tgz", - "integrity": "sha512-9l/aRfpE9MCRVDWRb+rSB9Zei0paep1vqV6M/87VUnzBnzqeMRnVuPvQowilh2zweVSGKBF25Vp4HkwOL6ExDQ==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-17.4.1.tgz", + "integrity": "sha512-oYP7yzOpn63g1Mpwc8F8ERiywaGRhAs27ttI9t+5NXaLrwHSfc/AJleC7jjkB5xu1p88JY1mb4oIYOjeZAhHIg==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.3.0", - "@angular-eslint/utils": "17.3.0", - "@typescript-eslint/type-utils": "7.2.0", - "@typescript-eslint/utils": "7.2.0", + "@angular-eslint/bundled-angular-compiler": "17.4.1", + "@angular-eslint/utils": "17.4.1", + "@typescript-eslint/type-utils": "7.8.0", + "@typescript-eslint/utils": "7.8.0", "aria-query": "5.3.0", "axobject-query": "4.0.0" }, @@ -852,17 +881,31 @@ "typescript": "*" } }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/scope-manager": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", + "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@angular-eslint/utils": { + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.4.1.tgz", + "integrity": "sha512-ptpWSrN7hfLtbStOB5vlwjh088WRu+sT1XIXCROrX5uXR5sQMu5ZitnoObSe+Of+1lugguPvMvFm/pzTMp3LIg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0" + "@angular-eslint/bundled-angular-compiler": "17.4.1", + "@typescript-eslint/utils": "7.8.0" + }, + "peerDependencies": { + "eslint": "^7.20.0 || ^8.0.0", + "typescript": "*" + } + }, + "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/scope-manager": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", + "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -870,12 +913,12 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", + "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", "dev": true, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -883,22 +926,22 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", + "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -911,21 +954,21 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/utils": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.2.0.tgz", - "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", + "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.2.0", - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/typescript-estree": "7.2.0", - "semver": "^7.5.4" + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "semver": "^7.6.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -936,16 +979,16 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", + "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "eslint-visitor-keys": "^3.4.1" + "@typescript-eslint/types": "7.8.0", + "eslint-visitor-keys": "^3.4.3" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -962,9 +1005,9 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -976,17 +1019,31 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", + "node_modules/@angular-eslint/eslint-plugin/node_modules/@angular-eslint/utils": { + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.4.1.tgz", + "integrity": "sha512-ptpWSrN7hfLtbStOB5vlwjh088WRu+sT1XIXCROrX5uXR5sQMu5ZitnoObSe+Of+1lugguPvMvFm/pzTMp3LIg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0" + "@angular-eslint/bundled-angular-compiler": "17.4.1", + "@typescript-eslint/utils": "7.8.0" + }, + "peerDependencies": { + "eslint": "^7.20.0 || ^8.0.0", + "typescript": "*" + } + }, + "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", + "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -994,12 +1051,12 @@ } }, "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", + "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", "dev": true, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -1007,22 +1064,22 @@ } }, "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", + "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -1035,21 +1092,21 @@ } }, "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.2.0.tgz", - "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", + "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.2.0", - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/typescript-estree": "7.2.0", - "semver": "^7.5.4" + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "semver": "^7.6.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -1060,16 +1117,16 @@ } }, "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", + "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "eslint-visitor-keys": "^3.4.1" + "@typescript-eslint/types": "7.8.0", + "eslint-visitor-keys": "^3.4.3" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -1086,9 +1143,9 @@ } }, "node_modules/@angular-eslint/eslint-plugin/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -1101,16 +1158,16 @@ } }, "node_modules/@angular-eslint/schematics": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-17.3.0.tgz", - "integrity": "sha512-5yssd5EOomxlKt9vN/OXXCTCuI3Pmfj16pkjBDoW0wzC8/M2l5zlXIEfoKumHYv2wtF553LhaMXVYVU35e0lTw==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-17.4.1.tgz", + "integrity": "sha512-CYpsGc0B/ZGO/RKYlyfeAi1pOvFmVs4pvoHU13uOdhdFJ6nAUTujHiBaULloIrUmuIhGW9S0g6w4ecD6ZP680w==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "17.3.0", - "@angular-eslint/eslint-plugin-template": "17.3.0", - "@nx/devkit": "^17.2.8 || ^18.0.0", + "@angular-eslint/eslint-plugin": "17.4.1", + "@angular-eslint/eslint-plugin-template": "17.4.1", + "@nx/devkit": "^17.2.8 || ^18.0.0 || ^19.0.0", "ignore": "5.3.1", - "nx": "^17.2.8 || ^18.0.0", + "nx": "^17.2.8 || ^18.0.0 || ^19.0.0", "strip-json-comments": "3.1.1", "tmp": "0.2.3" }, @@ -1119,12 +1176,12 @@ } }, "node_modules/@angular-eslint/template-parser": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-17.3.0.tgz", - "integrity": "sha512-m+UzAnWgtjeS0x6skSmR0eXltD/p7HZA+c8pPyAkiHQzkxE7ohhfyZc03yWGuYJvWQUqQAKKdO/nQop14TP0bg==", + "version": "17.4.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-17.4.1.tgz", + "integrity": "sha512-fJQpwQXexgs7Z3yYpQAfuAkFB2Y5H8SSlo+eAPPafOOPpPSIm/yP4dQ2e06tE8zWB5yjYnVBMJnUKSmG5GJSDw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.3.0", + "@angular-eslint/bundled-angular-compiler": "17.4.1", "eslint-scope": "^8.0.0" }, "peerDependencies": { @@ -1148,148 +1205,10 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/@angular-eslint/utils": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.3.0.tgz", - "integrity": "sha512-PJT9pxWqpvI9OXO+7L5SIVhvMW+RFjeafC7PYjtvSbNFpz+kF644BiAcfMJ0YqBnkrw3JXt+RAX25CT4mXIoXw==", - "dev": true, - "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.3.0", - "@typescript-eslint/utils": "7.2.0" - }, - "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", - "typescript": "*" - } - }, - "node_modules/@angular-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@angular-eslint/utils/node_modules/@typescript-eslint/utils": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.2.0.tgz", - "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.2.0", - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/typescript-estree": "7.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - } - }, - "node_modules/@angular-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.2.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/utils/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@angular-eslint/utils/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/@angular/cdk": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.6.tgz", - "integrity": "sha512-7eKrC61/6pmMAxllU/vYKadZRF7x7GxUYpA5G70fNaQsIUUiZvxx/SJN9AuZEoPGAtF6atKlJD8QVmFoDzv/Lw==", + "version": "17.3.10", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", + "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1303,15 +1222,15 @@ } }, "node_modules/@angular/cli": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.3.6.tgz", - "integrity": "sha512-poKaRPeI+hFqX+AxIaEriaIggFVcC3XqlT9E1/uBC2rfHirE1n5F9Z7xqEDtMHduKwLbNXhQIPoKIKya8+Hnew==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.3.7.tgz", + "integrity": "sha512-JgCav3sdRCoJHwLXxmF/EMzArYjwbqB+AGUW/xIR98oZET8QxCB985bOFUAm02SkAEUVcMJvjxec+WCaa60m/A==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1703.6", - "@angular-devkit/core": "17.3.6", - "@angular-devkit/schematics": "17.3.6", - "@schematics/angular": "17.3.6", + "@angular-devkit/architect": "0.1703.7", + "@angular-devkit/core": "17.3.7", + "@angular-devkit/schematics": "17.3.7", + "@schematics/angular": "17.3.7", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", "ini": "4.1.2", @@ -1343,9 +1262,9 @@ "dev": true }, "node_modules/@angular/common": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.3.7.tgz", - "integrity": "sha512-A7LRJu1vVCGGgrfZXjU+njz50SiU4weheKCar5PIUprcdIofS1IrHAJDqYh+kwXxkjXbZMOr/ijQY0+AESLEsw==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.3.9.tgz", + "integrity": "sha512-tH1VfbAvNVaz6ZYa+q0DiKtbmUql1jK/3q/af74B8nVjKLHcXVWwxvBayqvrmlUt7FGANGkETIcCWrB44k47Ug==", "dependencies": { "tslib": "^2.3.0" }, @@ -1353,14 +1272,14 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "17.3.7", + "@angular/core": "17.3.9", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-17.3.7.tgz", - "integrity": "sha512-AlKiqPoxnrpQ0hn13fIaQPSVodaVAIjBW4vpFyuKFqs2LBKg6iolwZ21s8rEI0KR2gXl+8ugj0/UZ6YADiVM5w==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-17.3.9.tgz", + "integrity": "sha512-2d4bPbNm7O2GanqCj5GFgPDnmjbAcsQM502Jnvcv7Aje82yecT69JoqAVRqGOfbbxwlJiPhi31D8DPdLaOz47Q==", "dependencies": { "tslib": "^2.3.0" }, @@ -1368,7 +1287,7 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "17.3.7" + "@angular/core": "17.3.9" }, "peerDependenciesMeta": { "@angular/core": { @@ -1377,9 +1296,9 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-17.3.7.tgz", - "integrity": "sha512-vSg5IQZ9jGmvYjpbfH8KbH4Sl1IVeE+Mr1ogcxkGEsURSRvKo7EWc0K7LSEI9+gg0VLamMiP9EyCJdPxiJeLJQ==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-17.3.9.tgz", + "integrity": "sha512-J6aqoz5wqPWaurbZFUZ7iMUlzAJYXzntziJJbalm6ceXfUWEe2Vm67nGUROWCIFvO3kWXvkgYX4ubnqtod2AxA==", "dependencies": { "@babel/core": "7.23.9", "@jridgewell/sourcemap-codec": "^1.4.14", @@ -1399,14 +1318,14 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/compiler": "17.3.7", + "@angular/compiler": "17.3.9", "typescript": ">=5.2 <5.5" } }, "node_modules/@angular/core": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-17.3.7.tgz", - "integrity": "sha512-HWcrbxqnvIMSxFuQdN0KPt08bc87hqr0LKm89yuRTUwx/2sNJlNQUobk6aJj4trswGBttcRDT+GOS4DQP2Nr4g==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-17.3.9.tgz", + "integrity": "sha512-x+h5BQ6islvYWGVLTz1CEgNq1/5IYngQ+Inq/tWayM6jN7RPOCydCCbCw+uOZS7MgFebkP0gYTVm14y1MRFKSQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -1419,9 +1338,9 @@ } }, "node_modules/@angular/forms": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.3.7.tgz", - "integrity": "sha512-FEhXh/VmT++XCoO8i7bBtzxG7Am/cE1zrr9aF+fWW+4jpWvJvVN1IaSiJxgBB+iPsOJ9lTBRwfRW3onlcDkhrw==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.3.9.tgz", + "integrity": "sha512-5b8OjK0kLghrdxkVWglgerHVp9D5WvXInXwo1KIyc2v/fGdTlyu/RFi0GLGvzq2y+7Z8TvtXWC82SB47vfx3TQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -1429,16 +1348,16 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.3.7", - "@angular/core": "17.3.7", - "@angular/platform-browser": "17.3.7", + "@angular/common": "17.3.9", + "@angular/core": "17.3.9", + "@angular/platform-browser": "17.3.9", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/localize": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-17.3.7.tgz", - "integrity": "sha512-GidwcxquawJBZXNQs6cJ3GvmyowupW9JFkG5sVsS6KG4yu9SIt4FZC+EbrVtYDhXI3U2wxGkm+9vDKvkSGzG0g==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-17.3.9.tgz", + "integrity": "sha512-ECWWw6GoJh2laopHIf+QT4bDDpSWwQJk95SGPI5mQIEXZXw6w9ms05Sfb8KJTNRXs9kcotloIGK9YanFZxzK1g==", "dependencies": { "@babel/core": "7.23.9", "@types/babel__core": "7.20.5", @@ -1454,14 +1373,14 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/compiler": "17.3.7", - "@angular/compiler-cli": "17.3.7" + "@angular/compiler": "17.3.9", + "@angular/compiler-cli": "17.3.9" } }, "node_modules/@angular/platform-browser": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.3.7.tgz", - "integrity": "sha512-Nn8ZMaftAvO9dEwribWdNv+QBHhYIBrRkv85G6et80AXfXoYAr/xcfnQECRFtZgPmANqHC5auv/xrmExQG+Yeg==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.3.9.tgz", + "integrity": "sha512-vMwHO76rnkz7aV3KHKy23KUFAo/+b0+yHPa6AND5Lee8z5C1J/tA2PdetFAsghlQQsX61JeK4MFJV/f3dFm2dw==", "dependencies": { "tslib": "^2.3.0" }, @@ -1469,9 +1388,9 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/animations": "17.3.7", - "@angular/common": "17.3.7", - "@angular/core": "17.3.7" + "@angular/animations": "17.3.9", + "@angular/common": "17.3.9", + "@angular/core": "17.3.9" }, "peerDependenciesMeta": { "@angular/animations": { @@ -1480,9 +1399,9 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-17.3.7.tgz", - "integrity": "sha512-9c2I4u0L1p2v1/lW8qy+WaNHisUWbyy6wqsv2v9FfCaSM49Lxymgo9LPFPC4qEG5ei5nE+eIQ2ocRiXXsf5QkQ==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-17.3.9.tgz", + "integrity": "sha512-Jmth4hFC4dZsWQRkxB++42sR1pfJUoQbErANrKQMgEPb8H4cLRdB1mAQ6f+OASPBM+FsxDxjXq2kepyLGtF2Vg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1490,16 +1409,16 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.3.7", - "@angular/compiler": "17.3.7", - "@angular/core": "17.3.7", - "@angular/platform-browser": "17.3.7" + "@angular/common": "17.3.9", + "@angular/compiler": "17.3.9", + "@angular/core": "17.3.9", + "@angular/platform-browser": "17.3.9" } }, "node_modules/@angular/router": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-17.3.7.tgz", - "integrity": "sha512-lMkuRrc1ZjP5JPDxNHqoAhB0uAnfPQ/q6mJrw1s8IZoVV6VyM+FxR5r13ajNcXWC38xy/YhBjpXPF1vBdxuLXg==", + "version": "17.3.9", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-17.3.9.tgz", + "integrity": "sha512-0cRF5YBJoDbXGQsRs3wEG+DPvN4PlhEqTa0DkTr9QIDJRg5P1uiDlOclV+w3OxEMsLrmXGmhjauHaWQk07M4LA==", "dependencies": { "tslib": "^2.3.0" }, @@ -1507,9 +1426,9 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.3.7", - "@angular/core": "17.3.7", - "@angular/platform-browser": "17.3.7", + "@angular/common": "17.3.9", + "@angular/core": "17.3.9", + "@angular/platform-browser": "17.3.9", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -4844,9 +4763,9 @@ } }, "node_modules/@ngtools/webpack": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.3.6.tgz", - "integrity": "sha512-equxbgh2DKzZtiFMoVf1KD4yJcH1q8lpqQ/GSPPQUvONcmHrr+yqdRUdaJ7oZCyCYmXF/nByBxtMKtJr6nKZVg==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.3.7.tgz", + "integrity": "sha512-kQNS68jsPQlaWAnKcVeFKNHp6K90uQANvq+9oXb/i+JnYWzuBsHzn2r8bVdMmvjd1HdBRiGtg767XRk3u+jgRw==", "dev": true, "engines": { "node": "^18.13.0 || >=20.9.0", @@ -5604,13 +5523,13 @@ ] }, "node_modules/@schematics/angular": { - "version": "17.3.6", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.6.tgz", - "integrity": "sha512-jCNZdjHSVrI8TrrCnCoXC8GYvQRj7zh+SDdmm91Ve8dbikYNmBOKYLuPaCTsmojWx7ytv962yLlgKzpaa2bbfw==", + "version": "17.3.7", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.7.tgz", + "integrity": "sha512-HaJroKaberriP4wFefTTSVFrtU9GMvnG3I6ELbOteOyKMH7o2V91FXGJDJ5KnIiLRlBmC30G3r+9Ybc/rtAYkw==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.6", - "@angular-devkit/schematics": "17.3.6", + "@angular-devkit/core": "17.3.7", + "@angular-devkit/schematics": "17.3.7", "jsonc-parser": "3.2.1" }, "engines": { @@ -6064,9 +5983,9 @@ "dev": true }, "node_modules/@types/semver": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", - "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, "node_modules/@types/send": { @@ -6252,18 +6171,18 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.2.0.tgz", - "integrity": "sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.8.0.tgz", + "integrity": "sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.2.0", - "@typescript-eslint/utils": "7.2.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "@typescript-eslint/utils": "7.8.0", "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6279,16 +6198,16 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/scope-manager": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", + "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0" + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6296,12 +6215,12 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", + "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", "dev": true, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6309,22 +6228,22 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", + "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6337,21 +6256,21 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.2.0.tgz", - "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", + "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.2.0", - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/typescript-estree": "7.2.0", - "semver": "^7.5.4" + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "semver": "^7.6.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6362,16 +6281,16 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", + "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.2.0", - "eslint-visitor-keys": "^3.4.1" + "@typescript-eslint/types": "7.8.0", + "eslint-visitor-keys": "^3.4.3" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -6388,9 +6307,9 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -12308,9 +12227,9 @@ } }, "node_modules/jest-preset-angular": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.0.3.tgz", - "integrity": "sha512-usgBL7x0rXMnMSx8iEFeOozj50W6fp+YAmQcQBUdAXhN+PAXRy4UXL6I/rfcAOU09rnnq7RKsLsmhpp/fFEuag==", + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.1.0.tgz", + "integrity": "sha512-UJwPtpsAMl30UtBjHW0Ai0hhoKsNURC1dXH5tSYjumUsWR7iDke+oBEykz7uXv4rN+PWgeNIqkxo4KHQjOITlw==", "dev": true, "dependencies": { "bs-logger": "^0.2.6", @@ -12327,10 +12246,10 @@ "esbuild": ">=0.15.13" }, "peerDependencies": { - "@angular-devkit/build-angular": ">=15.0.0 <18.0.0", - "@angular/compiler-cli": ">=15.0.0 <18.0.0", - "@angular/core": ">=15.0.0 <18.0.0", - "@angular/platform-browser-dynamic": ">=15.0.0 <18.0.0", + "@angular-devkit/build-angular": ">=15.0.0 <19.0.0", + "@angular/compiler-cli": ">=15.0.0 <19.0.0", + "@angular/core": ">=15.0.0 <19.0.0", + "@angular/platform-browser-dynamic": ">=15.0.0 <19.0.0", "jest": "^29.0.0", "typescript": ">=4.8" } @@ -14249,6 +14168,15 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, + "node_modules/ng2-pdf-viewer": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/ng2-pdf-viewer/-/ng2-pdf-viewer-10.2.2.tgz", + "integrity": "sha512-GaKAvF0nXAiR9U4LFWuT54MM9nzp0ie8GGscp34W+lFsSOXdlwS0iFx5UPuVlODRm3YEUKx6xcK5oaJeBq0SAw==", + "dependencies": { + "pdfjs-dist": "^3.11.174", + "tslib": "^2.3.0" + } + }, "node_modules/ngx-bootstrap-icons": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/ngx-bootstrap-icons/-/ngx-bootstrap-icons-1.9.3.tgz", @@ -14321,9 +14249,9 @@ } }, "node_modules/ngx-ui-tour-core": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-12.0.1.tgz", - "integrity": "sha512-IkkSY8l+3huQ5D7cPZ7tnAtP7ijQ85ggsOIohekE/DHqXReX988S2xuXh5A0pU8bS+HLJw2wlC1/XohOknVumA==", + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-12.0.2.tgz", + "integrity": "sha512-x5TOu4mtjojga+ht5LraQU+vOc4by4gof6TKGXDXsyW3kgWXqf7iJm5GUR+aLk7cr9FWdQYVUU+yTUmlI7XhOQ==", "dependencies": { "tslib": "^2.0.0" }, @@ -14335,11 +14263,11 @@ } }, "node_modules/ngx-ui-tour-ng-bootstrap": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/ngx-ui-tour-ng-bootstrap/-/ngx-ui-tour-ng-bootstrap-14.0.2.tgz", - "integrity": "sha512-2w9p5GHG/YDIwOQG+pct2s19P7hvtYbX73rYYV3FF86dXe00xPA7gGl2uSg48H3GjmSD0DeeKPzVWULwSBYNrw==", + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/ngx-ui-tour-ng-bootstrap/-/ngx-ui-tour-ng-bootstrap-14.0.3.tgz", + "integrity": "sha512-jc/WSSxApouwVpcuP9gOVMUjB8F7Buu2AXiYC05mYVgEnY8L2lFnC9TU8HtmT0nY9e2rnrQNu+wAeetu2REcDA==", "dependencies": { - "ngx-ui-tour-core": "12.0.1", + "ngx-ui-tour-core": "12.0.2", "tslib": "^2.0.0" }, "peerDependencies": { @@ -17862,12 +17790,12 @@ } }, "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", "dev": true, "engines": { - "node": ">=16.13.0" + "node": ">=16" }, "peerDependencies": { "typescript": ">=4.2.0" @@ -18918,9 +18846,9 @@ } }, "node_modules/ws": { - "version": "8.15.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.1.tgz", - "integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "dev": true, "engines": { "node": ">=10.0.0" diff --git a/src-ui/package.json b/src-ui/package.json index af8187877..3e5d5466a 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -11,15 +11,15 @@ }, "private": true, "dependencies": { - "@angular/cdk": "^17.3.6", - "@angular/common": "~17.3.7", - "@angular/compiler": "~17.3.7", - "@angular/core": "~17.3.7", - "@angular/forms": "~17.3.7", - "@angular/localize": "~17.3.7", - "@angular/platform-browser": "~17.3.7", - "@angular/platform-browser-dynamic": "~17.3.7", - "@angular/router": "~17.3.7", + "@angular/cdk": "^17.3.10", + "@angular/common": "~17.3.9", + "@angular/compiler": "~17.3.9", + "@angular/core": "~17.3.9", + "@angular/forms": "~17.3.9", + "@angular/localize": "~17.3.9", + "@angular/platform-browser": "~17.3.9", + "@angular/platform-browser-dynamic": "~17.3.9", + "@angular/router": "~17.3.9", "@ng-bootstrap/ng-bootstrap": "^16.0.0", "@ng-select/ng-select": "^12.0.7", "@ngneat/dirty-check-forms": "^3.0.3", @@ -27,13 +27,13 @@ "bootstrap": "^5.3.3", "file-saver": "^2.0.5", "mime-names": "^1.0.0", + "ng2-pdf-viewer": "^10.2.2", "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", "ngx-cookie-service": "^17.1.0", "ngx-file-drop": "^16.0.0", "ngx-filesize": "^3.0.3", - "ngx-ui-tour-ng-bootstrap": "^14.0.2", - "pdfjs-dist": "^3.11.174", + "ngx-ui-tour-ng-bootstrap": "^14.0.3", "rxjs": "^7.8.1", "tslib": "^2.6.2", "uuid": "^9.0.1", @@ -41,13 +41,13 @@ }, "devDependencies": { "@angular-builders/jest": "17.0.3", - "@angular-devkit/build-angular": "~17.3.6", - "@angular-eslint/builder": "17.3.0", - "@angular-eslint/eslint-plugin": "17.3.0", - "@angular-eslint/eslint-plugin-template": "17.3.0", - "@angular-eslint/schematics": "17.3.0", - "@angular-eslint/template-parser": "17.3.0", - "@angular/cli": "~17.3.6", + "@angular-devkit/build-angular": "~17.3.7", + "@angular-eslint/builder": "17.4.1", + "@angular-eslint/eslint-plugin": "17.4.1", + "@angular-eslint/eslint-plugin-template": "17.4.1", + "@angular-eslint/schematics": "17.4.1", + "@angular-eslint/template-parser": "17.4.1", + "@angular/cli": "~17.3.7", "@angular/compiler-cli": "~17.3.2", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", @@ -58,7 +58,7 @@ "eslint": "^8.57.0", "jest": "29.7.0", "jest-environment-jsdom": "^29.7.0", - "jest-preset-angular": "^14.0.0", + "jest-preset-angular": "^14.1.0", "jest-websocket-mock": "^2.5.0", "patch-package": "^8.0.0", "ts-node": "~10.9.1", diff --git a/src-ui/src/app/app-routing.module.ts b/src-ui/src/app/app-routing.module.ts index 12b412f67..8aacba8c8 100644 --- a/src-ui/src/app/app-routing.module.ts +++ b/src-ui/src/app/app-routing.module.ts @@ -26,6 +26,7 @@ import { MailComponent } from './components/manage/mail/mail.component' import { UsersAndGroupsComponent } from './components/admin/users-groups/users-groups.component' import { CustomFieldsComponent } from './components/manage/custom-fields/custom-fields.component' import { ConfigComponent } from './components/admin/config/config.component' +import { TrashComponent } from './components/admin/trash/trash.component' export const routes: Routes = [ { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, @@ -144,6 +145,17 @@ export const routes: Routes = [ requireAdmin: true, }, }, + { + path: 'trash', + component: TrashComponent, + canActivate: [PermissionsGuard], + data: { + requiredPermission: { + action: PermissionAction.Delete, + type: PermissionType.Document, + }, + }, + }, // redirect old paths { path: 'settings/mail', diff --git a/src-ui/src/app/app.component.ts b/src-ui/src/app/app.component.ts index 7e8abdf34..c6de83cd1 100644 --- a/src-ui/src/app/app.component.ts +++ b/src-ui/src/app/app.component.ts @@ -35,6 +35,8 @@ export class AppComponent implements OnInit, OnDestroy { private permissionsService: PermissionsService, private hotKeyService: HotKeyService ) { + let anyWindow = window as any + anyWindow.pdfWorkerSrc = 'assets/js/pdf.worker.min.js' this.settings.updateAppearanceSettings() } diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 24d63ed11..2232dad19 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -105,7 +105,7 @@ import { CustomFieldsComponent } from './components/manage/custom-fields/custom- import { CustomFieldEditDialogComponent } from './components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component' import { CustomFieldsDropdownComponent } from './components/common/custom-fields-dropdown/custom-fields-dropdown.component' import { ProfileEditDialogComponent } from './components/common/profile-edit-dialog/profile-edit-dialog.component' -import { PdfViewerComponent } from './components/common/pdf-viewer/pdf-viewer.component' +import { PdfViewerModule } from 'ng2-pdf-viewer' import { DocumentLinkComponent } from './components/common/input/document-link/document-link.component' import { PreviewPopupComponent } from './components/common/preview-popup/preview-popup.component' import { SwitchComponent } from './components/common/input/switch/switch.component' @@ -124,6 +124,8 @@ import { DragDropSelectComponent } from './components/common/input/drag-drop-sel import { CustomFieldDisplayComponent } from './components/common/custom-field-display/custom-field-display.component' import { GlobalSearchComponent } from './components/app-frame/global-search/global-search.component' import { HotkeyDialogComponent } from './components/common/hotkey-dialog/hotkey-dialog.component' +import { DeletePagesConfirmDialogComponent } from './components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component' +import { TrashComponent } from './components/admin/trash/trash.component' import { airplane, archive, @@ -160,6 +162,7 @@ import { clipboardCheckFill, clipboardFill, dash, + dashCircle, diagram3, dice5, doorOpen, @@ -174,6 +177,7 @@ import { fileEarmarkCheck, fileEarmarkFill, fileEarmarkLock, + fileEarmarkMinus, files, fileText, filter, @@ -259,6 +263,7 @@ const icons = { clipboardCheckFill, clipboardFill, dash, + dashCircle, diagram3, dice5, doorOpen, @@ -273,6 +278,7 @@ const icons = { fileEarmarkCheck, fileEarmarkFill, fileEarmarkLock, + fileEarmarkMinus, files, fileText, filter, @@ -475,7 +481,6 @@ function initializeApp(settings: SettingsService) { CustomFieldEditDialogComponent, CustomFieldsDropdownComponent, ProfileEditDialogComponent, - PdfViewerComponent, DocumentLinkComponent, PreviewPopupComponent, SwitchComponent, @@ -492,6 +497,8 @@ function initializeApp(settings: SettingsService) { CustomFieldDisplayComponent, GlobalSearchComponent, HotkeyDialogComponent, + DeletePagesConfirmDialogComponent, + TrashComponent, ], imports: [ BrowserModule, @@ -500,6 +507,7 @@ function initializeApp(settings: SettingsService) { HttpClientModule, FormsModule, ReactiveFormsModule, + PdfViewerModule, NgxFileDropModule, NgSelectModule, ColorSliderModule, diff --git a/src-ui/src/app/components/admin/config/config.component.html b/src-ui/src/app/components/admin/config/config.component.html index 03ca04b7b..0f74339fb 100644 --- a/src-ui/src/app/components/admin/config/config.component.html +++ b/src-ui/src/app/components/admin/config/config.component.html @@ -11,7 +11,7 @@ +
+ + +
} + @case (CustomFieldDataType.Boolean) { +
+ {{field.name}}: + +
+ } @default { {{value}} } } } @else if (showNameIfEmpty) { - {{field.name}} + {{field.name}} } } diff --git a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts index 4d263aa86..738198335 100644 --- a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts +++ b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts @@ -18,7 +18,7 @@ const document: Document = { custom_fields: [ { field: 1, document: 1, created: null, value: 'Text value' }, { field: 2, document: 1, created: null, value: 'USD100' }, - { field: 3, document: 1, created: null, value: '1,2,3' }, + { field: 3, document: 1, created: null, value: [1, 2, 3] }, ], } diff --git a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts index eb1fdb830..086ac217e 100644 --- a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts +++ b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts @@ -105,7 +105,9 @@ export class CustomFieldDisplayComponent implements OnInit, OnDestroy { .getFew(this.value, { fields: 'id,title' }) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((result: Results) => { - this.docLinkDocuments = result.results + this.docLinkDocuments = this.value.map((id) => + result.results.find((d) => d.id === id) + ) }) } diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts index 4edfa73e0..c40789875 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts @@ -320,10 +320,7 @@ export class FilterableDropdownComponent implements OnDestroy, OnInit { } } - itemsSorted( - items: MatchingModel[], - isEditModeActive: boolean = true - ): MatchingModel[] { + itemsSorted(items: MatchingModel[]): MatchingModel[] { const isUnassignedElement = (a) => a.id == null const getSelectionCount = (a) => this._documentCounts?.find((c) => c.id === a.id)?.document_count || 0 @@ -368,15 +365,7 @@ export class FilterableDropdownComponent implements OnDestroy, OnInit { } } }) - .filter( - (a: SelectionDataItem) => - isEditModeActive || - getSelectionCount(a) || - isUnassignedElement(a) || - this.selectionModel.getNonTemporary(a.id) != - ToggleableItemState.NotSelected || - this.selectionModel.temporarySelectionStates.get(a.id) - ) + .filter((a: SelectionDataItem) => true) } get items(): MatchingModel[] { diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.html b/src-ui/src/app/components/common/input/document-link/document-link.component.html index fc4726a55..a8ecce4e6 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.html +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.html @@ -27,8 +27,8 @@ (change)="onChange(selectedDocuments)">
diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts b/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts index e00460ec5..a8686bb05 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts @@ -66,6 +66,20 @@ describe('DocumentLinkComponent', () => { expect(getSpy).toHaveBeenCalled() }) + it('shoud maintain ordering of selected documents', () => { + const getSpy = jest.spyOn(documentService, 'getFew') + getSpy.mockImplementation((ids) => { + const docs = documents.filter((d) => ids.includes(d.id)) + return of({ + count: docs.length, + all: docs.map((d) => d.id), + results: docs, + }) + }) + component.writeValue([12, 1]) + expect(component.selectedDocuments).toEqual([documents[1], documents[0]]) + }) + it('should search API on select text input', () => { const listSpy = jest.spyOn(documentService, 'listFiltered') listSpy.mockImplementation( diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.ts b/src-ui/src/app/components/common/input/document-link/document-link.component.ts index 3ec26cb60..83a6a742e 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.ts +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.ts @@ -65,7 +65,9 @@ export class DocumentLinkComponent .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((documentResults) => { this.loading = false - this.selectedDocuments = documentResults.results + this.selectedDocuments = documentIDs.map((id) => + documentResults.results.find((d) => d.id === id) + ) super.writeValue(documentIDs) }) } diff --git a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html index fe549382a..bd7359e23 100644 --- a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html +++ b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html @@ -9,7 +9,7 @@
{{item.name}}
} @if (selectedItems.length === 0) { -
{{emptyText}}
+
{{emptyText}}
} diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html index cb8d616b3..8184bbbfa 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.html +++ b/src-ui/src/app/components/common/input/tags/tags.component.html @@ -1,7 +1,7 @@
- +
@@ -17,12 +17,12 @@ (change)="onChange(value)"> - - +
diff --git a/src-ui/src/app/components/common/input/tags/tags.component.scss b/src-ui/src/app/components/common/input/tags/tags.component.scss index a1d88a3a9..65b8603e0 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.scss +++ b/src-ui/src/app/components/common/input/tags/tags.component.scss @@ -7,10 +7,6 @@ font-size: 1rem; } -.tag-wrap-delete { - cursor: pointer; -} - .paperless-input-select.disabled { .input-group { cursor: not-allowed; diff --git a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.html b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.html deleted file mode 100644 index cd2c85af5..000000000 --- a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.html +++ /dev/null @@ -1,3 +0,0 @@ -
-
-
diff --git a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.scss b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.scss deleted file mode 100644 index 408bbb0a0..000000000 --- a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.scss +++ /dev/null @@ -1,1014 +0,0 @@ -/** - * This file is taken and modified from https://github.com/VadimDez/ng2-pdf-viewer/blob/10.0.0/src/app/pdf-viewer/pdf-viewer.component.scss - * Created by vadimdez on 21/06/16. - */ -.pngx-pdf-viewer-container { - overflow-x: auto; - position: absolute; - height: 100%; - width: 100%; - -webkit-overflow-scrolling: touch; - } - - :host { - display: block; - position: relative; - } - - :host ::ng-deep { - /* Copyright 2014 Mozilla Foundation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --pdfViewer-padding-bottom: 0; - --page-margin: 1px auto -8px; - --page-border: none; - --spreadHorizontalWrapped-margin-LR: -3.5px; - --viewer-container-height: 0; - --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,"); - --xfa-unfocused-field-background: var( - --annotation-unfocused-field-background - ); - --page-border-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAA1ElEQVQ4jbWUWw6EIAxFy2NFs/8NzR4UJhpqLsdi5mOmSSMUOfYWqv3S0gMr4XlYH/64gZa/gN3ANYA7KAXALt4ktoQ5MI9YxqaG8bWmsIysMuT6piSQCa4whZThCu8CM4zP9YJaKci9jicPq3NcBWYoPMGUlhG7ivtkB+gVyFY75wXghOvh8t5mto1Mdim6e+MBqH6XsY+YAwjpq3vGF7weTWQptLEDVCZvPTMl5JZZsdh47FHW6qFMyvLYqjcnmdFfY9Xk/KDOlzCusX2mi/ofM7MPkzBcSp4Q1/wAAAAASUVORK5CYII=') - 9 9 repeat; - --scale-factor: 1; - - --focus-outline: solid 2px blue; - --hover-outline: dashed 2px blue; - --freetext-line-height: 1.35; - --freetext-padding: 2px; - --editorInk-editing-cursor: pointer; - - @media screen and (forced-colors: active) { - --pdfViewer-padding-bottom: 9px; - --page-margin: 8px auto -1px; - --page-border: 1px solid CanvasText; - --page-border-image: none; - --spreadHorizontalWrapped-margin-LR: 3.5px; - } - - @media (forced-colors: active) { - --focus-outline: solid 3px ButtonText; - --hover-outline: dashed 3px ButtonText; - } - - .textLayer { - position: absolute; - text-align: initial; - left: 0; - top: 0; - right: 0; - bottom: 0; - overflow: hidden; - opacity: 0.2; - line-height: 1; - -webkit-text-size-adjust: none; - -moz-text-size-adjust: none; - text-size-adjust: none; - forced-color-adjust: none; - } - - .textLayer span, - .textLayer br { - color: transparent; - position: absolute; - white-space: pre; - cursor: text; - transform-origin: 0% 0%; - } - - /* Only necessary in Google Chrome, see issue 14205, and most unfortunately - * the problem doesn't show up in "text" reference tests. */ - .textLayer span.markedContent { - top: 0; - height: 0; - } - - .textLayer .highlight { - margin: -1px; - padding: 1px; - background-color: rgba(180, 0, 170, 1); - border-radius: 4px; - } - - .textLayer .highlight.appended { - position: initial; - } - - .textLayer .highlight.begin { - border-radius: 4px 0 0 4px; - } - - .textLayer .highlight.end { - border-radius: 0 4px 4px 0; - } - - .textLayer .highlight.middle { - border-radius: 0; - } - - .textLayer .highlight.selected { - background-color: rgba(0, 100, 0, 1); - } - - .textLayer ::-moz-selection { - background: rgba(0, 0, 255, 1); - } - - .textLayer ::selection { - background: rgba(0, 0, 255, 1); - } - - /* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */ - .textLayer br::-moz-selection { - background: transparent; - } - - .textLayer br::selection { - background: transparent; - } - - .textLayer .endOfContent { - display: block; - position: absolute; - left: 0; - top: 100%; - right: 0; - bottom: 0; - z-index: -1; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - } - - .textLayer .endOfContent.active { - top: 0; - } - - @media (forced-colors: active) { - .annotationLayer .textWidgetAnnotation input:required, - .annotationLayer .textWidgetAnnotation textarea:required, - .annotationLayer .choiceWidgetAnnotation select:required, - .annotationLayer .buttonWidgetAnnotation.checkBox input:required, - .annotationLayer .buttonWidgetAnnotation.radioButton input:required { - outline: 1.5px solid selectedItem; - } - } - - .annotationLayer { - position: absolute; - top: 0; - left: 0; - pointer-events: none; - transform-origin: 0 0; - } - - .annotationLayer section { - position: absolute; - text-align: initial; - pointer-events: auto; - box-sizing: border-box; - transform-origin: 0 0; - } - - .annotationLayer .linkAnnotation > a, - .annotationLayer .buttonWidgetAnnotation.pushButton > a { - position: absolute; - font-size: 1em; - top: 0; - left: 0; - width: 100%; - height: 100%; - } - - .annotationLayer .buttonWidgetAnnotation.pushButton > canvas { - width: 100%; - height: 100%; - } - - .annotationLayer .linkAnnotation > a:hover, - .annotationLayer .buttonWidgetAnnotation.pushButton > a:hover { - opacity: 0.2; - background: rgba(255, 255, 0, 1); - box-shadow: 0 2px 10px rgba(255, 255, 0, 1); - } - - .annotationLayer .textAnnotation img { - position: absolute; - cursor: pointer; - width: 100%; - height: 100%; - } - - .annotationLayer .textWidgetAnnotation input, - .annotationLayer .textWidgetAnnotation textarea, - .annotationLayer .choiceWidgetAnnotation select, - .annotationLayer .buttonWidgetAnnotation.checkBox input, - .annotationLayer .buttonWidgetAnnotation.radioButton input { - background-image: var(--annotation-unfocused-field-background); - border: 1px solid transparent; - box-sizing: border-box; - font: calc(9px * var(--scale-factor)) sans-serif; - height: 100%; - margin: 0; - vertical-align: top; - width: 100%; - } - - .annotationLayer .textWidgetAnnotation input:required, - .annotationLayer .textWidgetAnnotation textarea:required, - .annotationLayer .choiceWidgetAnnotation select:required, - .annotationLayer .buttonWidgetAnnotation.checkBox input:required, - .annotationLayer .buttonWidgetAnnotation.radioButton input:required { - outline: 1.5px solid red; - } - - .annotationLayer .choiceWidgetAnnotation select option { - padding: 0; - } - - .annotationLayer .buttonWidgetAnnotation.radioButton input { - border-radius: 50%; - } - - .annotationLayer .textWidgetAnnotation textarea { - resize: none; - } - - .annotationLayer .textWidgetAnnotation input[disabled], - .annotationLayer .textWidgetAnnotation textarea[disabled], - .annotationLayer .choiceWidgetAnnotation select[disabled], - .annotationLayer .buttonWidgetAnnotation.checkBox input[disabled], - .annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] { - background: none; - border: 1px solid transparent; - cursor: not-allowed; - } - - .annotationLayer .textWidgetAnnotation input:hover, - .annotationLayer .textWidgetAnnotation textarea:hover, - .annotationLayer .choiceWidgetAnnotation select:hover, - .annotationLayer .buttonWidgetAnnotation.checkBox input:hover, - .annotationLayer .buttonWidgetAnnotation.radioButton input:hover { - border: 1px solid rgba(0, 0, 0, 1); - } - - .annotationLayer .textWidgetAnnotation input:focus, - .annotationLayer .textWidgetAnnotation textarea:focus, - .annotationLayer .choiceWidgetAnnotation select:focus { - background: none; - border: 1px solid transparent; - } - - .annotationLayer .textWidgetAnnotation input :focus, - .annotationLayer .textWidgetAnnotation textarea :focus, - .annotationLayer .choiceWidgetAnnotation select :focus, - .annotationLayer .buttonWidgetAnnotation.checkBox :focus, - .annotationLayer .buttonWidgetAnnotation.radioButton :focus { - background-image: none; - background-color: transparent; - outline: auto; - } - - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before, - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after, - .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before { - background-color: CanvasText; - content: ''; - display: block; - position: absolute; - } - - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before, - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after { - height: 80%; - left: 45%; - width: 1px; - } - - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before { - transform: rotate(45deg); - } - - .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after { - transform: rotate(-45deg); - } - - .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before { - border-radius: 50%; - height: 50%; - left: 30%; - top: 20%; - width: 50%; - } - - .annotationLayer .textWidgetAnnotation input.comb { - font-family: monospace; - padding-left: 2px; - padding-right: 0; - } - - .annotationLayer .textWidgetAnnotation input.comb:focus { - /* - * Letter spacing is placed on the right side of each character. Hence, the - * letter spacing of the last character may be placed outside the visible - * area, causing horizontal scrolling. We avoid this by extending the width - * when the element has focus and revert this when it loses focus. - */ - width: 103%; - } - - .annotationLayer .buttonWidgetAnnotation.checkBox input, - .annotationLayer .buttonWidgetAnnotation.radioButton input { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - } - - .annotationLayer .popupTriggerArea { - height: 100%; - width: 100%; - } - - .annotationLayer .popupWrapper { - position: absolute; - font-size: calc(9px * var(--scale-factor)); - width: 100%; - min-width: calc(180px * var(--scale-factor)); - pointer-events: none; - } - - .annotationLayer .popup { - position: absolute; - max-width: calc(180px * var(--scale-factor)); - background-color: rgba(255, 255, 153, 1); - box-shadow: 0 calc(2px * var(--scale-factor)) - calc(5px * var(--scale-factor)) rgba(136, 136, 136, 1); - border-radius: calc(2px * var(--scale-factor)); - padding: calc(6px * var(--scale-factor)); - margin-left: calc(5px * var(--scale-factor)); - cursor: pointer; - font: message-box; - white-space: normal; - word-wrap: break-word; - pointer-events: auto; - } - - .annotationLayer .popup > * { - font-size: calc(9px * var(--scale-factor)); - } - - .annotationLayer .popup h1 { - display: inline-block; - } - - .annotationLayer .popupDate { - display: inline-block; - margin-left: calc(5px * var(--scale-factor)); - } - - .annotationLayer .popupContent { - border-top: 1px solid rgba(51, 51, 51, 1); - margin-top: calc(2px * var(--scale-factor)); - padding-top: calc(2px * var(--scale-factor)); - } - - .annotationLayer .richText > * { - white-space: pre-wrap; - font-size: calc(9px * var(--scale-factor)); - } - - .annotationLayer .highlightAnnotation, - .annotationLayer .underlineAnnotation, - .annotationLayer .squigglyAnnotation, - .annotationLayer .strikeoutAnnotation, - .annotationLayer .freeTextAnnotation, - .annotationLayer .lineAnnotation svg line, - .annotationLayer .squareAnnotation svg rect, - .annotationLayer .circleAnnotation svg ellipse, - .annotationLayer .polylineAnnotation svg polyline, - .annotationLayer .polygonAnnotation svg polygon, - .annotationLayer .caretAnnotation, - .annotationLayer .inkAnnotation svg polyline, - .annotationLayer .stampAnnotation, - .annotationLayer .fileAttachmentAnnotation { - cursor: pointer; - } - - .annotationLayer section svg { - position: absolute; - width: 100%; - height: 100%; - } - - .annotationLayer .annotationTextContent { - position: absolute; - width: 100%; - height: 100%; - opacity: 0; - color: transparent; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - pointer-events: none; - } - - .annotationLayer .annotationTextContent span { - width: 100%; - display: inline-block; - } - - @media (forced-colors: active) { - .xfaLayer *:required { - outline: 1.5px solid selectedItem; - } - } - - .xfaLayer .highlight { - margin: -1px; - padding: 1px; - background-color: rgba(239, 203, 237, 1); - border-radius: 4px; - } - - .xfaLayer .highlight.appended { - position: initial; - } - - .xfaLayer .highlight.begin { - border-radius: 4px 0 0 4px; - } - - .xfaLayer .highlight.end { - border-radius: 0 4px 4px 0; - } - - .xfaLayer .highlight.middle { - border-radius: 0; - } - - .xfaLayer .highlight.selected { - background-color: rgba(203, 223, 203, 1); - } - - .xfaLayer ::-moz-selection { - background: rgba(0, 0, 255, 1); - } - - .xfaLayer ::selection { - background: rgba(0, 0, 255, 1); - } - - .xfaPage { - overflow: hidden; - position: relative; - } - - .xfaContentarea { - position: absolute; - } - - .xfaPrintOnly { - display: none; - } - - .xfaLayer { - position: absolute; - text-align: initial; - top: 0; - left: 0; - transform-origin: 0 0; - line-height: 1.2; - } - - .xfaLayer * { - color: inherit; - font: inherit; - font-style: inherit; - font-weight: inherit; - font-kerning: inherit; - letter-spacing: -0.01px; - text-align: inherit; - text-decoration: inherit; - box-sizing: border-box; - background-color: transparent; - padding: 0; - margin: 0; - pointer-events: auto; - line-height: inherit; - } - - .xfaLayer *:required { - outline: 1.5px solid red; - } - - .xfaLayer div { - pointer-events: none; - } - - .xfaLayer svg { - pointer-events: none; - } - - .xfaLayer svg * { - pointer-events: none; - } - - .xfaLayer a { - color: blue; - } - - .xfaRich li { - margin-left: 3em; - } - - .xfaFont { - color: black; - font-weight: normal; - font-kerning: none; - font-size: 10px; - font-style: normal; - letter-spacing: 0; - text-decoration: none; - vertical-align: 0; - } - - .xfaCaption { - overflow: hidden; - flex: 0 0 auto; - } - - .xfaCaptionForCheckButton { - overflow: hidden; - flex: 1 1 auto; - } - - .xfaLabel { - height: 100%; - width: 100%; - } - - .xfaLeft { - display: flex; - flex-direction: row; - align-items: center; - } - - .xfaRight { - display: flex; - flex-direction: row-reverse; - align-items: center; - } - - .xfaLeft > .xfaCaption, - .xfaLeft > .xfaCaptionForCheckButton, - .xfaRight > .xfaCaption, - .xfaRight > .xfaCaptionForCheckButton { - max-height: 100%; - } - - .xfaTop { - display: flex; - flex-direction: column; - align-items: flex-start; - } - - .xfaBottom { - display: flex; - flex-direction: column-reverse; - align-items: flex-start; - } - - .xfaTop > .xfaCaption, - .xfaTop > .xfaCaptionForCheckButton, - .xfaBottom > .xfaCaption, - .xfaBottom > .xfaCaptionForCheckButton { - width: 100%; - } - - .xfaBorder { - background-color: transparent; - position: absolute; - pointer-events: none; - } - - .xfaWrapped { - width: 100%; - height: 100%; - } - - .xfaTextfield:focus, - .xfaSelect:focus { - background-image: none; - background-color: transparent; - outline: auto; - outline-offset: -1px; - } - - .xfaCheckbox:focus, - .xfaRadio:focus { - outline: auto; - } - - .xfaTextfield, - .xfaSelect { - height: 100%; - width: 100%; - flex: 1 1 auto; - border: none; - resize: none; - background-image: var(--xfa-unfocused-field-background); - } - - .xfaTop > .xfaTextfield, - .xfaTop > .xfaSelect, - .xfaBottom > .xfaTextfield, - .xfaBottom > .xfaSelect { - flex: 0 1 auto; - } - - .xfaButton { - cursor: pointer; - width: 100%; - height: 100%; - border: none; - text-align: center; - } - - .xfaLink { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - } - - .xfaCheckbox, - .xfaRadio { - width: 100%; - height: 100%; - flex: 0 0 auto; - border: none; - } - - .xfaRich { - white-space: pre-wrap; - width: 100%; - height: 100%; - } - - .xfaImage { - -o-object-position: left top; - object-position: left top; - -o-object-fit: contain; - object-fit: contain; - width: 100%; - height: 100%; - } - - .xfaLrTb, - .xfaRlTb, - .xfaTb { - display: flex; - flex-direction: column; - align-items: stretch; - } - - .xfaLr { - display: flex; - flex-direction: row; - align-items: stretch; - } - - .xfaRl { - display: flex; - flex-direction: row-reverse; - align-items: stretch; - } - - .xfaTb > div { - justify-content: left; - } - - .xfaPosition { - position: relative; - } - - .xfaArea { - position: relative; - } - - .xfaValignMiddle { - display: flex; - align-items: center; - } - - .xfaTable { - display: flex; - flex-direction: column; - align-items: stretch; - } - - .xfaTable .xfaRow { - display: flex; - flex-direction: row; - align-items: stretch; - } - - .xfaTable .xfaRlRow { - display: flex; - flex-direction: row-reverse; - align-items: stretch; - flex: 1; - } - - .xfaTable .xfaRlRow > div { - flex: 1; - } - - .xfaNonInteractive input, - .xfaNonInteractive textarea, - .xfaDisabled input, - .xfaDisabled textarea, - .xfaReadOnly input, - .xfaReadOnly textarea { - background: initial; - } - - @media print { - .xfaTextfield, - .xfaSelect { - background: transparent; - } - - .xfaSelect { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - text-indent: 1px; - text-overflow: ''; - } - } - - [data-editor-rotation='90'] { - transform: rotate(90deg); - } - [data-editor-rotation='180'] { - transform: rotate(180deg); - } - [data-editor-rotation='270'] { - transform: rotate(270deg); - } - - .annotationEditorLayer { - background: transparent; - position: absolute; - top: 0; - left: 0; - font-size: calc(100px * var(--scale-factor)); - transform-origin: 0 0; - } - - .annotationEditorLayer .selectedEditor { - outline: var(--focus-outline); - resize: none; - } - - .annotationEditorLayer .freeTextEditor { - position: absolute; - background: transparent; - border-radius: 3px; - padding: calc(var(--freetext-padding) * var(--scale-factor)); - resize: none; - width: auto; - height: auto; - z-index: 1; - transform-origin: 0 0; - touch-action: none; - } - - .annotationEditorLayer .freeTextEditor .internal { - background: transparent; - border: none; - top: 0; - left: 0; - overflow: visible; - white-space: nowrap; - resize: none; - font: 10px sans-serif; - line-height: var(--freetext-line-height); - } - - .annotationEditorLayer .freeTextEditor .overlay { - position: absolute; - display: none; - background: transparent; - top: 0; - left: 0; - width: 100%; - height: 100%; - } - - .annotationEditorLayer .freeTextEditor .overlay.enabled { - display: block; - } - - .annotationEditorLayer .freeTextEditor .internal:empty::before { - content: attr(default-content); - color: gray; - } - - .annotationEditorLayer .freeTextEditor .internal:focus { - outline: none; - } - - .annotationEditorLayer .inkEditor.disabled { - resize: none; - } - - .annotationEditorLayer .inkEditor.disabled.selectedEditor { - resize: horizontal; - } - - .annotationEditorLayer .freeTextEditor:hover:not(.selectedEditor), - .annotationEditorLayer .inkEditor:hover:not(.selectedEditor) { - outline: var(--hover-outline); - } - - .annotationEditorLayer .inkEditor { - position: absolute; - background: transparent; - border-radius: 3px; - overflow: auto; - width: 100%; - height: 100%; - z-index: 1; - transform-origin: 0 0; - cursor: auto; - } - - .annotationEditorLayer .inkEditor.editing { - resize: none; - cursor: var(--editorInk-editing-cursor), pointer; - } - - .annotationEditorLayer .inkEditor .inkEditorCanvas { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - touch-action: none; - } - - [data-main-rotation='90'] { - transform: rotate(90deg) translateY(-100%); - } - [data-main-rotation='180'] { - transform: rotate(180deg) translate(-100%, -100%); - } - [data-main-rotation='270'] { - transform: rotate(270deg) translateX(-100%); - } - - .pdfViewer { - padding-bottom: var(--pdfViewer-padding-bottom); - } - - .pdfViewer .canvasWrapper { - overflow: hidden; - } - - .pdfViewer .page { - direction: ltr; - width: 816px; - height: 1056px; - margin: var(--page-margin); - position: relative; - overflow: visible; - border: var(--page-border); - -o-border-image: var(--page-border-image); - border-image: var(--page-border-image); - background-clip: content-box; - background-color: rgba(255, 255, 255, 1); - } - - .pdfViewer .dummyPage { - position: relative; - width: 0; - height: var(--viewer-container-height); - } - - .pdfViewer.removePageBorders .page { - margin: 0 auto 10px; - border: none; - } - - .pdfViewer.singlePageView { - display: inline-block; - } - - .pdfViewer.singlePageView .page { - margin: 0; - border: none; - } - - .pdfViewer.scrollHorizontal, - .pdfViewer.scrollWrapped, - .spread { - margin-left: 3.5px; - margin-right: 3.5px; - text-align: center; - } - - .pdfViewer.scrollHorizontal, - .spread { - white-space: nowrap; - } - - .pdfViewer.removePageBorders, - .pdfViewer.scrollHorizontal .spread, - .pdfViewer.scrollWrapped .spread { - margin-left: 0; - margin-right: 0; - } - - .spread .page, - .spread .dummyPage, - .pdfViewer.scrollHorizontal .page, - .pdfViewer.scrollWrapped .page, - .pdfViewer.scrollHorizontal .spread, - .pdfViewer.scrollWrapped .spread { - display: inline-block; - vertical-align: middle; - } - - .spread .page, - .pdfViewer.scrollHorizontal .page, - .pdfViewer.scrollWrapped .page { - margin-left: var(--spreadHorizontalWrapped-margin-LR); - margin-right: var(--spreadHorizontalWrapped-margin-LR); - } - - .pdfViewer.removePageBorders .spread .page, - .pdfViewer.removePageBorders.scrollHorizontal .page, - .pdfViewer.removePageBorders.scrollWrapped .page { - margin-left: 5px; - margin-right: 5px; - } - - .pdfViewer .page canvas { - margin: 0; - display: block; - } - - .pdfViewer .page canvas[hidden] { - display: none; - } - - .pdfViewer .page .loadingIcon { - position: absolute; - display: block; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url('data:image/gif;base64,R0lGODlhGAAYAPQQAM7Ozvr6+uDg4LCwsOjo6I6OjsjIyJycnNjY2KioqMDAwPLy8nZ2doaGhri4uGhoaP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/ilPcHRpbWl6ZWQgd2l0aCBodHRwczovL2V6Z2lmLmNvbS9vcHRpbWl6ZQAh+QQJBwAQACwAAAAAGAAYAAAFmiAkjiTkOGVaBgjZNGSgkgKjjM8zLoI8iy+BKCdiCX8iBeMAhEEIPRXLxViYUE9CbCQoFAzFhHY3zkaT3oPvBz1zE4UBsr1eWZH4vAowOBwGAHk8AoQLfH6Agm0Ed3qOAXWOIgQKiWyFJQgDgJEpdG+WEACNEFNFmKVlVzJQk6qdkwqBoi1mebJ3ALNGeIZHtGSwNDS1RZKueCEAIfkECQcAEAAsAAAAABgAGAAABZcgJI4kpChlWgYCWRQkEKgjURgjw4zOg9CjVwuiEyEeO6CxkBC9nA+HiuUqLEyoBZI0Mx4SAFFgQCDZuguBoGv6Dtg0gvpqdhxQQDkBzuUr/4A1JwMKP39pc2mDhYCIc4GQYn6QCwCMeY91l0p6dBAEJ0OfcFRimZ91Mwt0alxxAIZyRmuAsKxDLKKvZbM1tJxmvGKRpn8hACH5BAkHABAALAAAAAAYABgAAAWhICSOJGQYZVoGAnkcJBKoI3EAY1GMCtPSosSBINKJBIwGkHdwBGGQA0OhYpEGQxNqkYzNIITBACEKKBaxxNfBeOCO4vMy0Hg8nDHFeCktkKtfNAtoS4UqAicKBj9zBAKPC4iKi4aRkISGmWWBmjUIAIyHkCUEAKCVo2WmREecVqoCgZhgP4NHrGWCj7e3szSpuxAsoVWxnp6cVV4kyZW+KSEAIfkECQcAEAAsAAAAABgAGAAABZkgJI4kBABlWgYEOQykEKgjMSDjcYxG0dKi108nEhQKQN4rCIMkCgbawjWYnSCLY2yGVSgEooBhWqsGGwxc0RtNBgoMhmJ1QgETjANYFeBKyUmBKQQIdT9JDmgPDQ6EhoKJD4sOgpWWgiwChyqEBH5hmptSoSOZgJ4kLKWkYTF7C2SaqaM/hEWygay4mYG8t6uffFuzl1iANCEAIfkECQcAEAAsAAAAABgAGAAABZ0gJI4khCBlmhKkopBCoI6LIozDMAIHO4uuBVBnOiR+I4FrCDwAZsKdQnaCLIwwmRUA8JmioprWUCjcwlwUMnAoG0qL03k2KCS8cC0UjOzDCQKBfHQFDAwFU4CCfgqFhy9+kZJWgzSKSAcPZn+BfQENDw8OljGWJAFeDoZPYTBnC1GdSXqnsoBolSulX2GyP6hgvnG0KrS3NJNhuSQhACH5BAkHABAALAAAAAAYABgAAAWaICSOJCQIZZoupGGQRKCOC0CMijIiwz2LABtQZxoMfjQhxAXszWQ7gOwECRhh0MCJJRJARTUoIHFAgbfI6uBwAJS01J/i4PClVYHvfV8lbLlIBmwFbQt+aGmChG18jXeGT4dICQxlb4g/AQUMDER9XjR6BAdiDQwINDBmkAsPDVh4cX4imw53iLKuaVqAcUsPqEiidkt6j4AzIQAh+QQJBwAQACwAAAAAGAAYAAAFmSAkjiREEGWaBiSCtCoZCMsIAKOg1LEo0KKbaKFQ9EYLoOkFuQlirNxzCQkUW9GZ0hQd4nyDAWr4G/esYSbyZFYZwu3jqiuvr8u8I2BwOAwASXh1e31/doeHC3klWnElfAlTd46MfQUGk2stCVEGBQWSdCciDg5VDAVYKoEiDQ0iBwxGcj9RDw8+qHIzebc2DJJQJK6qiKVyIQAh+QQJBwAQACwAAAAAGAAYAAAFmSAkjiS0LGWaBiRBtCoZCKgoCCMB1DF0sz6cCQDo5W62l28XAyZFpyECBv3lnCbhUqHMIo0Qg4Jbmn1jRCa4iV27TzfXGjEecOFWMN1OdvvfPGUuXSoKBw6EXokrAwcHRVU0UAeEBANAAAmUI1gNDyhjJgUHLW0iDg8FIqOnBQZrDA9TELE2rEYIDw4jta2LMpCrqld/YQpgIQAh+QQJBwAQACwAAAAAGAAYAAAFmyAkjiS0LGWaBiRBkKw6BgIqCsJcyyMe4yJajhcEml5H26o1PN2QQd3uFiv2AADlAgflIbDdZLgkABOJgep5LfWty4p4zeU+w+XsvJWXliEKDwdEBgMKYQ4PDw1qK3EDCCMAiQ5BCV0LCj+FSDQkgCgGBiYHAy2MIgoMghAHqw4HAGsNDEMFBTekdgwKI7aRB2MwkL2rVHoQoWchACH5BAkHABAALAAAAAAYABgAAAWWICSOJLQsZZoGJEGQrDoGAioKwlzLIx7jIlqOFwSaXkfbqjU83ZBB3e4WK0qrCxyU55peid0qcUwuixyNx6PhILsAcAJazXYj4lvz2MkLiFsHDAlEcABKZwwMBX8pBgoKQxAIigpBA1sLBj+PSDQkB4uSACYDlTMyBgWDEKVnl2QFBUigN61gBQYjtLV5JZ4jtlR6omMhACH5BAkHABAALAAAAAAYABgAAAWaICSOJLQsZZoGJEGQrDoGAioKwlzLIx7jIlqOFwSaXkdbidYanm7I4AjwYDh6saJuJ3JUG1mZi9srPA7EcRimJLrfJYWZUVC8TziXnEG3u/E+cIJaPAFrPQl1aQAIbRAGBZGHJQiMUQKRBkEKbQsAPZaEXQcslSYKmjMyAAdXj34ACkNEiUgDA5t+PAQHn6Ogjkuzry2DNwhuIQAh+QQFBwAQACwAAAAAGAAYAAAFnCAkjiS0LGVaBgBJEGSguo8zCsK4CPIsMg+ECCcKEH0ix6MwhJl4KiOp8UCdmrEbo6EoHpxF8A6aBBZ6vhf5dmAkkGr0CoWs21WGQ2FvsI9xC3l7B311fy93iWGKJQQOhHCAJQB6A3IqcWwJLU90i2FkUiMKlhBELEI6MwgDXRAGhQgAYD6tTqRFAJxpA6mvrqazSKJJhUWMpjlIIQA7') - center no-repeat; - } - - .pdfViewer .page .loadingIcon.notVisible { - background: none; - } - - .pdfViewer.enablePermissions .textLayer span { - -webkit-user-select: none !important; - -moz-user-select: none !important; - user-select: none !important; - cursor: not-allowed; - } - - .pdfPresentationMode .pdfViewer { - padding-bottom: 0; - } - - .pdfPresentationMode .spread { - margin: 0; - } - - .pdfPresentationMode .pdfViewer .page { - margin: 0 auto; - border: 2px solid transparent; - } - } diff --git a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts deleted file mode 100644 index 4fc55429a..000000000 --- a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts +++ /dev/null @@ -1,600 +0,0 @@ -/** - * This file is taken and modified from https://github.com/VadimDez/ng2-pdf-viewer/blob/10.0.0/src/app/pdf-viewer/pdf-viewer.component.ts - * Created by vadimdez on 21/06/16. - */ -import { - Component, - Input, - Output, - ElementRef, - EventEmitter, - OnChanges, - SimpleChanges, - OnInit, - OnDestroy, - ViewChild, - AfterViewChecked, - NgZone, -} from '@angular/core' -import { from, fromEvent, Subject } from 'rxjs' -import { debounceTime, filter, takeUntil } from 'rxjs/operators' -import * as PDFJS from 'pdfjs-dist' -import * as PDFJSViewer from 'pdfjs-dist/web/pdf_viewer' - -import { createEventBus } from './utils/event-bus-utils' - -import type { - PDFSource, - PDFPageProxy, - PDFProgressData, - PDFDocumentProxy, - PDFDocumentLoadingTask, - PDFViewerOptions, - ZoomScale, -} from './typings' -import { PDFSinglePageViewer } from 'pdfjs-dist/web/pdf_viewer' - -PDFJS['verbosity'] = PDFJS.VerbosityLevel.ERRORS -PDFJS['isEvalSupported'] = false - -export enum RenderTextMode { - DISABLED, - ENABLED, - ENHANCED, -} - -@Component({ - selector: 'pngx-pdf-viewer', - templateUrl: './pdf-viewer.component.html', - styleUrls: ['./pdf-viewer.component.scss'], -}) -export class PdfViewerComponent - implements OnChanges, OnInit, OnDestroy, AfterViewChecked -{ - static CSS_UNITS = 96.0 / 72.0 - static BORDER_WIDTH = 9 - - @ViewChild('pdfViewerContainer') - pdfViewerContainer!: ElementRef - - public eventBus!: PDFJSViewer.EventBus - public pdfLinkService!: PDFJSViewer.PDFLinkService - public pdfViewer!: PDFJSViewer.PDFViewer | PDFSinglePageViewer - - private isVisible = false - - private _cMapsUrl = - typeof PDFJS !== 'undefined' - ? `https://unpkg.com/pdfjs-dist@${(PDFJS as any).version}/cmaps/` - : null - private _imageResourcesPath = - typeof PDFJS !== 'undefined' - ? `https://unpkg.com/pdfjs-dist@${(PDFJS as any).version}/web/images/` - : undefined - private _renderText = true - private _renderTextMode: RenderTextMode = RenderTextMode.ENABLED - private _stickToPage = false - private _originalSize = true - private _pdf: PDFDocumentProxy | undefined - private _page = 1 - private _zoom = 1 - private _zoomScale: ZoomScale = 'page-width' - private _rotation = 0 - private _showAll = true - private _canAutoResize = true - private _fitToPage = false - private _externalLinkTarget = 'blank' - private _showBorders = false - private lastLoaded!: string | Uint8Array | PDFSource | null - private _latestScrolledPage!: number - - private resizeTimeout: number | null = null - private pageScrollTimeout: number | null = null - private isInitialized = false - private loadingTask?: PDFDocumentLoadingTask | null - private destroy$ = new Subject() - - @Output('after-load-complete') afterLoadComplete = - new EventEmitter() - @Output('page-rendered') pageRendered = new EventEmitter() - @Output('pages-initialized') pageInitialized = new EventEmitter() - @Output('text-layer-rendered') textLayerRendered = - new EventEmitter() - @Output('error') onError = new EventEmitter() - @Output('on-progress') onProgress = new EventEmitter() - @Output() pageChange: EventEmitter = new EventEmitter(true) - @Input() src?: string | Uint8Array | PDFSource - - @Input('c-maps-url') - set cMapsUrl(cMapsUrl: string) { - this._cMapsUrl = cMapsUrl - } - - @Input('page') - set page(_page: number | string | any) { - _page = parseInt(_page, 10) || 1 - const originalPage = _page - - if (this._pdf) { - _page = this.getValidPageNumber(_page) - } - - this._page = _page - if (originalPage !== _page) { - this.pageChange.emit(_page) - } - } - - @Input('render-text') - set renderText(renderText: boolean) { - this._renderText = renderText - } - - @Input('render-text-mode') - set renderTextMode(renderTextMode: RenderTextMode) { - this._renderTextMode = renderTextMode - } - - @Input('original-size') - set originalSize(originalSize: boolean) { - this._originalSize = originalSize - } - - @Input('show-all') - set showAll(value: boolean) { - this._showAll = value - } - - @Input('stick-to-page') - set stickToPage(value: boolean) { - this._stickToPage = value - } - - @Input('zoom') - set zoom(value: number) { - if (value <= 0) { - return - } - - this._zoom = value - } - - get zoom() { - return this._zoom - } - - @Input('zoom-scale') - set zoomScale(value: ZoomScale) { - this._zoomScale = value - } - - get zoomScale() { - return this._zoomScale - } - - @Input('rotation') - set rotation(value: number) { - if (!(typeof value === 'number' && value % 90 === 0)) { - console.warn('Invalid pages rotation angle.') - return - } - - this._rotation = value - } - - @Input('external-link-target') - set externalLinkTarget(value: string) { - this._externalLinkTarget = value - } - - @Input('autoresize') - set autoresize(value: boolean) { - this._canAutoResize = Boolean(value) - } - - @Input('fit-to-page') - set fitToPage(value: boolean) { - this._fitToPage = Boolean(value) - } - - @Input('show-borders') - set showBorders(value: boolean) { - this._showBorders = Boolean(value) - } - - static getLinkTarget(type: string) { - switch (type) { - case 'blank': - return (PDFJSViewer as any).LinkTarget.BLANK - case 'none': - return (PDFJSViewer as any).LinkTarget.NONE - case 'self': - return (PDFJSViewer as any).LinkTarget.SELF - case 'parent': - return (PDFJSViewer as any).LinkTarget.PARENT - case 'top': - return (PDFJSViewer as any).LinkTarget.TOP - } - - return null - } - - constructor( - private element: ElementRef, - private ngZone: NgZone - ) { - PDFJS.GlobalWorkerOptions['workerSrc'] = 'assets/js/pdf.worker.min.js' - } - - ngAfterViewChecked(): void { - if (this.isInitialized) { - return - } - - const offset = this.pdfViewerContainer.nativeElement.offsetParent - - if (this.isVisible === true && offset == null) { - this.isVisible = false - return - } - - if (this.isVisible === false && offset != null) { - this.isVisible = true - - setTimeout(() => { - this.initialize() - this.ngOnChanges({ src: this.src } as any) - }) - } - } - - ngOnInit() { - this.initialize() - this.setupResizeListener() - } - - ngOnDestroy() { - this.clear() - this.destroy$.next() - this.loadingTask = null - } - - ngOnChanges(changes: SimpleChanges) { - if (!this.isVisible) { - return - } - - if ('src' in changes) { - this.loadPDF() - } else if (this._pdf) { - if ('renderText' in changes || 'showAll' in changes) { - this.setupViewer() - this.resetPdfDocument() - } - if ('page' in changes) { - const { page } = changes - if (page.currentValue === this._latestScrolledPage) { - return - } - - // New form of page changing: The viewer will now jump to the specified page when it is changed. - // This behavior is introduced by using the PDFSinglePageViewer - this.pdfViewer.scrollPageIntoView({ pageNumber: this._page }) - } - - this.update() - } - } - - public updateSize() { - from( - this._pdf!.getPage( - this.pdfViewer.currentPageNumber - ) as unknown as Promise - ) - .pipe(takeUntil(this.destroy$)) - .subscribe({ - next: (page: PDFPageProxy) => { - const rotation = this._rotation + page.rotate - const viewportWidth = - (page as any).getViewport({ - scale: this._zoom, - rotation, - }).width * PdfViewerComponent.CSS_UNITS - let scale = this._zoom - let stickToPage = true - - // Scale the document when it shouldn't be in original size or doesn't fit into the viewport - if ( - !this._originalSize || - (this._fitToPage && - viewportWidth > this.pdfViewerContainer.nativeElement.clientWidth) - ) { - const viewPort = (page as any).getViewport({ scale: 1, rotation }) - scale = this.getScale(viewPort.width, viewPort.height) - stickToPage = !this._stickToPage - } - - setTimeout(() => { - this.pdfViewer.currentScale = scale - }) - }, - }) - } - - public clear() { - if (this.loadingTask && !this.loadingTask.destroyed) { - this.loadingTask.destroy() - } - - if (this._pdf) { - this._latestScrolledPage = 0 - this._pdf.destroy() - this._pdf = undefined - } - } - - private getPDFLinkServiceConfig() { - const linkTarget = PdfViewerComponent.getLinkTarget( - this._externalLinkTarget - ) - - if (linkTarget) { - return { externalLinkTarget: linkTarget } - } - - return {} - } - - private initEventBus() { - this.eventBus = createEventBus(PDFJSViewer, this.destroy$) - - fromEvent(this.eventBus, 'pagerendered') - .pipe(takeUntil(this.destroy$)) - .subscribe((event) => { - this.pageRendered.emit(event) - }) - - fromEvent(this.eventBus, 'pagesinit') - .pipe(takeUntil(this.destroy$)) - .subscribe((event) => { - this.pageInitialized.emit(event) - }) - - fromEvent(this.eventBus, 'pagechanging') - .pipe(takeUntil(this.destroy$)) - .subscribe(({ pageNumber }: any) => { - if (this.pageScrollTimeout) { - clearTimeout(this.pageScrollTimeout) - } - - this.pageScrollTimeout = window.setTimeout(() => { - this._latestScrolledPage = pageNumber - this.pageChange.emit(pageNumber) - }, 100) - }) - - fromEvent(this.eventBus, 'textlayerrendered') - .pipe(takeUntil(this.destroy$)) - .subscribe((event) => { - this.textLayerRendered.emit(event) - }) - } - - private initPDFServices() { - this.pdfLinkService = new PDFJSViewer.PDFLinkService({ - eventBus: this.eventBus, - ...this.getPDFLinkServiceConfig(), - }) - } - - private getPDFOptions(): PDFViewerOptions { - return { - eventBus: this.eventBus, - container: this.element.nativeElement.querySelector('div')!, - removePageBorders: !this._showBorders, - linkService: this.pdfLinkService, - textLayerMode: this._renderText - ? this._renderTextMode - : RenderTextMode.DISABLED, - imageResourcesPath: this._imageResourcesPath, - } - } - - private setupViewer() { - PDFJS['disableTextLayer'] = !this._renderText - - this.initPDFServices() - - if (this._showAll) { - this.pdfViewer = new PDFJSViewer.PDFViewer(this.getPDFOptions()) - } else { - this.pdfViewer = new PDFJSViewer.PDFSinglePageViewer(this.getPDFOptions()) - } - this.pdfLinkService.setViewer(this.pdfViewer) - - this.pdfViewer._currentPageNumber = this._page - } - - private getValidPageNumber(page: number): number { - if (page < 1) { - return 1 - } - - if (page > this._pdf!.numPages) { - return this._pdf!.numPages - } - - return page - } - - private getDocumentParams() { - const srcType = typeof this.src - - if (!this._cMapsUrl) { - return this.src - } - - const params: any = { - cMapUrl: this._cMapsUrl, - cMapPacked: true, - enableXfa: true, - } - - if (srcType === 'string') { - params.url = this.src - } else if (srcType === 'object') { - if ((this.src as any).byteLength !== undefined) { - params.data = this.src - } else { - Object.assign(params, this.src) - } - } - - return params - } - - private loadPDF() { - if (!this.src) { - return - } - - if (this.lastLoaded === this.src) { - this.update() - return - } - - this.clear() - - if (this.pdfViewer) { - this.pdfViewer._resetView() - this.pdfViewer = null - } - - this.setupViewer() - - try { - this.loadingTask = PDFJS.getDocument(this.getDocumentParams()) - - this.loadingTask!.onProgress = (progressData: PDFProgressData) => { - this.onProgress.emit(progressData) - } - - const src = this.src - - from(this.loadingTask!.promise as Promise) - .pipe(takeUntil(this.destroy$)) - .subscribe({ - next: (pdf) => { - this._pdf = pdf - this.lastLoaded = src - - this.afterLoadComplete.emit(pdf) - this.resetPdfDocument() - - this.update() - }, - error: (error) => { - this.lastLoaded = null - this.onError.emit(error) - }, - }) - } catch (e) { - this.onError.emit(e) - } - } - - private update() { - this.page = this._page - - this.render() - } - - private render() { - this._page = this.getValidPageNumber(this._page) - - if ( - this._rotation !== 0 || - this.pdfViewer.pagesRotation !== this._rotation - ) { - setTimeout(() => { - this.pdfViewer.pagesRotation = this._rotation - }) - } - - if (this._stickToPage) { - setTimeout(() => { - this.pdfViewer.currentPageNumber = this._page - }) - } - - this.updateSize() - } - - private getScale(viewportWidth: number, viewportHeight: number) { - const borderSize = this._showBorders - ? 2 * PdfViewerComponent.BORDER_WIDTH - : 0 - const pdfContainerWidth = - this.pdfViewerContainer.nativeElement.clientWidth - borderSize - const pdfContainerHeight = - this.pdfViewerContainer.nativeElement.clientHeight - borderSize - - if ( - pdfContainerHeight === 0 || - viewportHeight === 0 || - pdfContainerWidth === 0 || - viewportWidth === 0 - ) { - return 1 - } - - let ratio = 1 - switch (this._zoomScale) { - case 'page-fit': - ratio = Math.min( - pdfContainerHeight / viewportHeight, - pdfContainerWidth / viewportWidth - ) - break - case 'page-height': - ratio = pdfContainerHeight / viewportHeight - break - case 'page-width': - default: - ratio = pdfContainerWidth / viewportWidth - break - } - - return (this._zoom * ratio) / PdfViewerComponent.CSS_UNITS - } - - private resetPdfDocument() { - this.pdfLinkService.setDocument(this._pdf, null) - this.pdfViewer.setDocument(this._pdf!) - } - - private initialize(): void { - if (!this.isVisible) { - return - } - - this.isInitialized = true - this.initEventBus() - this.setupViewer() - } - - private setupResizeListener(): void { - this.ngZone.runOutsideAngular(() => { - fromEvent(window, 'resize') - .pipe( - debounceTime(100), - filter(() => this._canAutoResize && !!this._pdf), - takeUntil(this.destroy$) - ) - .subscribe(() => { - this.updateSize() - }) - }) - } -} diff --git a/src-ui/src/app/components/common/pdf-viewer/typings.ts b/src-ui/src/app/components/common/pdf-viewer/typings.ts deleted file mode 100644 index 8dad45f30..000000000 --- a/src-ui/src/app/components/common/pdf-viewer/typings.ts +++ /dev/null @@ -1,17 +0,0 @@ -export type PDFPageProxy = - import('pdfjs-dist/types/src/display/api').PDFPageProxy -export type PDFSource = - import('pdfjs-dist/types/src/display/api').DocumentInitParameters -export type PDFDocumentProxy = - import('pdfjs-dist/types/src/display/api').PDFDocumentProxy -export type PDFDocumentLoadingTask = - import('pdfjs-dist/types/src/display/api').PDFDocumentLoadingTask -export type PDFViewerOptions = - import('pdfjs-dist/types/web/pdf_viewer').PDFViewerOptions - -export interface PDFProgressData { - loaded: number - total: number -} - -export type ZoomScale = 'page-height' | 'page-fit' | 'page-width' diff --git a/src-ui/src/app/components/common/pdf-viewer/utils/event-bus-utils.ts b/src-ui/src/app/components/common/pdf-viewer/utils/event-bus-utils.ts deleted file mode 100644 index 8ae501169..000000000 --- a/src-ui/src/app/components/common/pdf-viewer/utils/event-bus-utils.ts +++ /dev/null @@ -1,182 +0,0 @@ -/** - * This file is taken and modified from https://github.com/VadimDez/ng2-pdf-viewer/blob/10.0.0/src/app/pdf-viewer/utils/event-bus-utils.ts - * Created by vadimdez on 21/06/16. - */ -import { fromEvent, Subject } from 'rxjs' -import { takeUntil } from 'rxjs/operators' - -import type { EventBus } from 'pdfjs-dist/web/pdf_viewer' - -// interface EventBus { -// on(eventName: string, listener: Function): void; -// off(eventName: string, listener: Function): void; -// _listeners: any; -// dispatch(eventName: string, data: Object): void; -// _on(eventName: any, listener: any, options?: null): void; -// _off(eventName: any, listener: any, options?: null): void; -// } - -export function createEventBus(pdfJsViewer: any, destroy$: Subject) { - const globalEventBus: EventBus = new pdfJsViewer.EventBus() - attachDOMEventsToEventBus(globalEventBus, destroy$) - return globalEventBus -} - -function attachDOMEventsToEventBus( - eventBus: EventBus, - destroy$: Subject -): void { - fromEvent(eventBus, 'documentload') - .pipe(takeUntil(destroy$)) - .subscribe(() => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('documentload', true, true, {}) - window.dispatchEvent(event) - }) - - fromEvent(eventBus, 'pagerendered') - .pipe(takeUntil(destroy$)) - .subscribe(({ pageNumber, cssTransform, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('pagerendered', true, true, { - pageNumber, - cssTransform, - }) - source.div.dispatchEvent(event) - }) - - fromEvent(eventBus, 'textlayerrendered') - .pipe(takeUntil(destroy$)) - .subscribe(({ pageNumber, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('textlayerrendered', true, true, { pageNumber }) - source.textLayerDiv?.dispatchEvent(event) - }) - - fromEvent(eventBus, 'pagechanging') - .pipe(takeUntil(destroy$)) - .subscribe(({ pageNumber, source }: any) => { - const event = document.createEvent('UIEvents') as any - event.initEvent('pagechanging', true, true) - /* tslint:disable:no-string-literal */ - event['pageNumber'] = pageNumber - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'pagesinit') - .pipe(takeUntil(destroy$)) - .subscribe(({ source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('pagesinit', true, true, null) - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'pagesloaded') - .pipe(takeUntil(destroy$)) - .subscribe(({ pagesCount, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('pagesloaded', true, true, { pagesCount }) - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'scalechange') - .pipe(takeUntil(destroy$)) - .subscribe(({ scale, presetValue, source }: any) => { - const event = document.createEvent('UIEvents') as any - event.initEvent('scalechange', true, true) - /* tslint:disable:no-string-literal */ - event['scale'] = scale - /* tslint:disable:no-string-literal */ - event['presetValue'] = presetValue - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'updateviewarea') - .pipe(takeUntil(destroy$)) - .subscribe(({ location, source }: any) => { - const event = document.createEvent('UIEvents') as any - event.initEvent('updateviewarea', true, true) - event['location'] = location - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'find') - .pipe(takeUntil(destroy$)) - .subscribe( - ({ - source, - type, - query, - phraseSearch, - caseSensitive, - highlightAll, - findPrevious, - }: any) => { - if (source === window) { - return // event comes from FirefoxCom, no need to replicate - } - const event = document.createEvent('CustomEvent') - event.initCustomEvent('find' + type, true, true, { - query, - phraseSearch, - caseSensitive, - highlightAll, - findPrevious, - }) - window.dispatchEvent(event) - } - ) - - fromEvent(eventBus, 'attachmentsloaded') - .pipe(takeUntil(destroy$)) - .subscribe(({ attachmentsCount, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('attachmentsloaded', true, true, { - attachmentsCount, - }) - source.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'sidebarviewchanged') - .pipe(takeUntil(destroy$)) - .subscribe(({ view, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('sidebarviewchanged', true, true, { view }) - source.outerContainer.dispatchEvent(event) - }) - - fromEvent(eventBus, 'pagemode') - .pipe(takeUntil(destroy$)) - .subscribe(({ mode, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('pagemode', true, true, { mode }) - source.pdfViewer.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'namedaction') - .pipe(takeUntil(destroy$)) - .subscribe(({ action, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('namedaction', true, true, { action }) - source.pdfViewer.container.dispatchEvent(event) - }) - - fromEvent(eventBus, 'presentationmodechanged') - .pipe(takeUntil(destroy$)) - .subscribe(({ active, switchInProgress }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('presentationmodechanged', true, true, { - active, - switchInProgress, - }) - window.dispatchEvent(event) - }) - - fromEvent(eventBus, 'outlineloaded') - .pipe(takeUntil(destroy$)) - .subscribe(({ outlineCount, source }: any) => { - const event = document.createEvent('CustomEvent') - event.initCustomEvent('outlineloaded', true, true, { outlineCount }) - source.container.dispatchEvent(event) - }) -} diff --git a/src-ui/src/app/components/common/permissions-select/permissions-select.component.html b/src-ui/src/app/components/common/permissions-select/permissions-select.component.html index 049d0e776..0a0bea5c0 100644 --- a/src-ui/src/app/components/common/permissions-select/permissions-select.component.html +++ b/src-ui/src/app/components/common/permissions-select/permissions-select.component.html @@ -19,7 +19,7 @@ @for (action of PermissionAction | keyvalue; track action) {
- +
} diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.html b/src-ui/src/app/components/common/preview-popup/preview-popup.component.html index 124d13af8..ecbc215d8 100644 --- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.html +++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.html @@ -13,13 +13,13 @@
} @if (!requiresPassword) { - - + } } } diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts index 42a97c743..6f638bb89 100644 --- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts +++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts @@ -1,7 +1,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { PreviewPopupComponent } from './preview-popup.component' -import { PdfViewerComponent } from '../pdf-viewer/pdf-viewer.component' import { By } from '@angular/platform-browser' import { SafeUrlPipe } from 'src/app/pipes/safeurl.pipe' import { SettingsService } from 'src/app/services/settings.service' @@ -9,6 +8,7 @@ import { SETTINGS_KEYS } from 'src/app/data/ui-settings' import { HttpClientTestingModule } from '@angular/common/http/testing' import { DocumentService } from 'src/app/services/rest/document.service' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { PdfViewerModule } from 'ng2-pdf-viewer' const doc = { id: 10, @@ -25,10 +25,11 @@ describe('PreviewPopupComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ - declarations: [PreviewPopupComponent, PdfViewerComponent, SafeUrlPipe], + declarations: [PreviewPopupComponent, SafeUrlPipe], imports: [ HttpClientTestingModule, NgxBootstrapIconsModule.pick(allIcons), + PdfViewerModule, ], }) settingsService = TestBed.inject(SettingsService) @@ -69,7 +70,7 @@ describe('PreviewPopupComponent', () => { settingsService.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, false) fixture.detectChanges() expect(fixture.debugElement.query(By.css('object'))).toBeNull() - expect(fixture.debugElement.query(By.css('pngx-pdf-viewer'))).not.toBeNull() + expect(fixture.debugElement.query(By.css('pdf-viewer'))).not.toBeNull() }) it('should show lock icon on password error', () => { diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts index 13baa363a..b515bb622 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts @@ -87,7 +87,7 @@ describe('SystemStatusDialogComponent', () => { jest.spyOn(clipboard, 'copy') component.copy() expect(clipboard.copy).toHaveBeenCalledWith( - JSON.stringify(component.status) + JSON.stringify(component.status, null, 4) ) expect(component.copied).toBeTruthy() tick(3000) diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.ts b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.ts index 83468e711..8535969a5 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.ts +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.ts @@ -28,7 +28,7 @@ export class SystemStatusDialogComponent { } public copy() { - this.clipboard.copy(JSON.stringify(this.status)) + this.clipboard.copy(JSON.stringify(this.status, null, 4)) this.copied = true setTimeout(() => { this.copied = false diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html index 4ea602098..3591f817f 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -34,32 +34,32 @@ @switch (field) { @case (DisplayField.ADDED) { - {{doc.added | customDate}} + {{doc.added | customDate}} } @case (DisplayField.CREATED) { - {{doc.created_date | customDate}} + {{doc.created_date | customDate}} } @case (DisplayField.TITLE) { - {{doc.title | documentTitle}} + {{doc.title | documentTitle}} } @case (DisplayField.CORRESPONDENT) { @if (doc.correspondent) { - {{(doc.correspondent$ | async)?.name}} + {{(doc.correspondent$ | async)?.name}} } } @case (DisplayField.TAGS) { @for (t of doc.tags$ | async; track t) { - + } } @case (DisplayField.DOCUMENT_TYPE) { @if (doc.document_type) { - {{(doc.document_type$ | async)?.name}} + {{(doc.document_type$ | async)?.name}} } } @case (DisplayField.STORAGE_PATH) { @if (doc.storage_path) { - {{(doc.storage_path$ | async)?.name}} + {{(doc.storage_path$ | async)?.name}} } } } diff --git a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html index 18f28ddfc..d89fc972c 100644 --- a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -18,7 +18,7 @@ @if (statistics?.current_asn) {
Current ASN: - {{statistics?.current_asn | number}} + {{statistics?.current_asn}}
} @if (statistics?.document_file_type_counts?.length > 1) { diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index 6e2d47e2b..8486e1816 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -1,5 +1,5 @@ - @if (contentRenderType === ContentRenderType.PDF && !useNativePdfViewer) { + @if (archiveContentRenderType === ContentRenderType.PDF && !useNativePdfViewer) { @if (previewNumPages) {
Page
@@ -45,21 +45,25 @@
 Actions
- - - + +
@@ -105,13 +109,13 @@ - - - - + @for (fieldInstance of document?.custom_fields; track fieldInstance.field; let i = $index) {
@switch (getCustomFieldFromInstance(fieldInstance)?.data_type) { @@ -343,11 +347,11 @@
} @else { - @switch (contentRenderType) { + @switch (archiveContentRenderType) { @case (ContentRenderType.PDF) { @if (!useNativePdfViewer) {
- - +
} @else { diff --git a/src-ui/src/app/components/document-detail/document-detail.component.scss b/src-ui/src/app/components/document-detail/document-detail.component.scss index 1f6729784..e5032d3f3 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.scss +++ b/src-ui/src/app/components/document-detail/document-detail.component.scss @@ -5,16 +5,18 @@ } .pdf-viewer-container { + padding-top: 10px; background-color: gray; - pngx-pdf-viewer { + pdf-viewer { width: 100%; height: 100%; } } -::ng-deep .pngx-pdf-viewer-container .page { - --page-margin: 10px auto; +::ng-deep .ng2-pdf-viewer-container .page { + --page-margin: 0 auto 10px; + --page-border: 0; } ::ng-deep form .ng-select-taggable { diff --git a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts index a0c02a688..0a6eb3a5f 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts @@ -76,11 +76,13 @@ import { ShareLinksDropdownComponent } from '../common/share-links-dropdown/shar import { CustomFieldsDropdownComponent } from '../common/custom-fields-dropdown/custom-fields-dropdown.component' import { CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' -import { PdfViewerComponent } from '../common/pdf-viewer/pdf-viewer.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { environment } from 'src/environments/environment' import { RotateConfirmDialogComponent } from '../common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component' import { SplitConfirmDialogComponent } from '../common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component' +import { DeletePagesConfirmDialogComponent } from '../common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component' +import { PdfViewerModule } from 'ng2-pdf-viewer' +import { DataType } from 'src/app/data/datatype' const doc: Document = { id: 3, @@ -176,9 +178,9 @@ describe('DocumentDetailComponent', () => { SafeUrlPipe, ShareLinksDropdownComponent, CustomFieldsDropdownComponent, - PdfViewerComponent, SplitConfirmDialogComponent, RotateConfirmDialogComponent, + DeletePagesConfirmDialogComponent, ], providers: [ DocumentTitlePipe, @@ -265,6 +267,7 @@ describe('DocumentDetailComponent', () => { ReactiveFormsModule, NgbModalModule, NgxBootstrapIconsModule.pick(allIcons), + PdfViewerModule, ], }).compileComponents() @@ -649,7 +652,7 @@ describe('DocumentDetailComponent', () => { ]) }) - it('should support redo ocr, confirm and close modal after started', () => { + it('should support reprocess, confirm and close modal after started', () => { initNormally() const bulkEditSpy = jest.spyOn(documentService, 'bulkEdit') bulkEditSpy.mockReturnValue(of(true)) @@ -657,10 +660,10 @@ describe('DocumentDetailComponent', () => { modalService.activeInstances.subscribe((modal) => (openModal = modal[0])) const modalSpy = jest.spyOn(modalService, 'open') const toastSpy = jest.spyOn(toastService, 'showInfo') - component.redoOcr() + component.reprocess() const modalCloseSpy = jest.spyOn(openModal, 'close') openModal.componentInstance.confirmClicked.next() - expect(bulkEditSpy).toHaveBeenCalledWith([doc.id], 'redo_ocr', {}) + expect(bulkEditSpy).toHaveBeenCalledWith([doc.id], 'reprocess', {}) expect(modalSpy).toHaveBeenCalled() expect(toastSpy).toHaveBeenCalled() expect(modalCloseSpy).toHaveBeenCalled() @@ -672,7 +675,7 @@ describe('DocumentDetailComponent', () => { let openModal: NgbModalRef modalService.activeInstances.subscribe((modal) => (openModal = modal[0])) const toastSpy = jest.spyOn(toastService, 'showError') - component.redoOcr() + component.reprocess() const modalCloseSpy = jest.spyOn(openModal, 'close') bulkEditSpy.mockReturnValue(throwError(() => new Error('error occurred'))) openModal.componentInstance.confirmClicked.next() @@ -781,10 +784,9 @@ describe('DocumentDetailComponent', () => { const object = { id: 22, name: 'Correspondent22', - last_correspondence: new Date().toISOString(), } as Correspondent const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') - component.filterDocuments([object]) + component.filterDocuments([object], DataType.Correspondent) expect(qfSpy).toHaveBeenCalledWith([ { rule_type: FILTER_CORRESPONDENT, @@ -797,7 +799,7 @@ describe('DocumentDetailComponent', () => { initNormally() const object = { id: 22, name: 'DocumentType22' } as DocumentType const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') - component.filterDocuments([object]) + component.filterDocuments([object], DataType.DocumentType) expect(qfSpy).toHaveBeenCalledWith([ { rule_type: FILTER_DOCUMENT_TYPE, @@ -814,7 +816,7 @@ describe('DocumentDetailComponent', () => { path: '/foo/bar/', } as StoragePath const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') - component.filterDocuments([object]) + component.filterDocuments([object], DataType.StoragePath) expect(qfSpy).toHaveBeenCalledWith([ { rule_type: FILTER_STORAGE_PATH, @@ -840,7 +842,7 @@ describe('DocumentDetailComponent', () => { text_color: '#000000', } as Tag const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') - component.filterDocuments([object1, object2]) + component.filterDocuments([object1, object2], DataType.Tag) expect(qfSpy).toHaveBeenCalledWith([ { rule_type: FILTER_HAS_TAGS_ALL, @@ -885,7 +887,7 @@ describe('DocumentDetailComponent', () => { jest.spyOn(settingsService, 'get').mockReturnValue(false) expect(component.useNativePdfViewer).toBeFalsy() fixture.detectChanges() - expect(fixture.debugElement.query(By.css('pngx-pdf-viewer'))).not.toBeNull() + expect(fixture.debugElement.query(By.css('pdf-viewer'))).not.toBeNull() }) it('should display native pdf viewer if enabled', () => { @@ -1035,7 +1037,9 @@ describe('DocumentDetailComponent', () => { component.metadata = { has_archive_version: true } initNormally() fixture.detectChanges() - expect(component.contentRenderType).toEqual(component.ContentRenderType.PDF) + expect(component.archiveContentRenderType).toEqual( + component.ContentRenderType.PDF + ) expect( fixture.debugElement.query(By.css('pdf-viewer-container')) ).not.toBeUndefined() @@ -1045,7 +1049,7 @@ describe('DocumentDetailComponent', () => { original_mime_type: 'text/plain', } fixture.detectChanges() - expect(component.contentRenderType).toEqual( + expect(component.archiveContentRenderType).toEqual( component.ContentRenderType.Text ) expect( @@ -1057,7 +1061,7 @@ describe('DocumentDetailComponent', () => { original_mime_type: 'image/jpg', } fixture.detectChanges() - expect(component.contentRenderType).toEqual( + expect(component.archiveContentRenderType).toEqual( component.ContentRenderType.Image ) expect( @@ -1070,7 +1074,7 @@ describe('DocumentDetailComponent', () => { 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', } fixture.detectChanges() - expect(component.contentRenderType).toEqual( + expect(component.archiveContentRenderType).toEqual( component.ContentRenderType.Other ) expect( @@ -1095,7 +1099,7 @@ describe('DocumentDetailComponent', () => { expect(req.request.body).toEqual({ documents: [doc.id], method: 'split', - parameters: { pages: '1-2,3-5' }, + parameters: { pages: '1-2,3-5', delete_originals: false }, }) req.error(new ProgressEvent('failed')) modal.componentInstance.confirm() @@ -1130,6 +1134,31 @@ describe('DocumentDetailComponent', () => { req.flush(true) }) + it('should support delete pages', () => { + let modal: NgbModalRef + modalService.activeInstances.subscribe((m) => (modal = m[0])) + initNormally() + component.deletePages() + expect(modal).not.toBeUndefined() + modal.componentInstance.documentID = doc.id + modal.componentInstance.pages = [1, 2] + modal.componentInstance.confirm() + let req = httpTestingController.expectOne( + `${environment.apiBaseUrl}documents/bulk_edit/` + ) + expect(req.request.body).toEqual({ + documents: [doc.id], + method: 'delete_pages', + parameters: { pages: [1, 2] }, + }) + req.error(new ProgressEvent('failed')) + modal.componentInstance.confirm() + req = httpTestingController.expectOne( + `${environment.apiBaseUrl}documents/bulk_edit/` + ) + req.flush(true) + }) + it('should support keyboard shortcuts', () => { initNormally() diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index c530921c7..d6cbdd57e 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -66,10 +66,12 @@ import { ISODateAdapter } from 'src/app/utils/ngb-iso-date-adapter' import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldInstance } from 'src/app/data/custom-field-instance' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' -import { PDFDocumentProxy } from '../common/pdf-viewer/typings' import { SplitConfirmDialogComponent } from '../common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component' import { RotateConfirmDialogComponent } from '../common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component' +import { DeletePagesConfirmDialogComponent } from '../common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component' import { HotKeyService } from 'src/app/services/hot-key.service' +import { PDFDocumentProxy } from 'ng2-pdf-viewer' +import { DataType } from 'src/app/data/datatype' enum DocumentDetailNavIDs { Details = 1, @@ -170,6 +172,8 @@ export class DocumentDetailComponent public readonly ContentRenderType = ContentRenderType + public readonly DataType = DataType + @ViewChild('nav') nav: NgbNav @ViewChild('pdfPreview') set pdfPreview(element) { // this gets called when component added or removed from DOM @@ -216,19 +220,27 @@ export class DocumentDetailComponent return this.settings.get(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER) } - get contentRenderType(): ContentRenderType { - if (!this.metadata) return ContentRenderType.Unknown - const contentType = this.metadata?.has_archive_version - ? 'application/pdf' - : this.metadata?.original_mime_type + get archiveContentRenderType(): ContentRenderType { + return this.getRenderType( + this.metadata?.has_archive_version + ? 'application/pdf' + : this.metadata?.original_mime_type + ) + } - if (contentType === 'application/pdf') { + get originalContentRenderType(): ContentRenderType { + return this.getRenderType(this.metadata?.original_mime_type) + } + + private getRenderType(mimeType: string): ContentRenderType { + if (!mimeType) return ContentRenderType.Unknown + if (mimeType === 'application/pdf') { return ContentRenderType.PDF } else if ( - ['text/plain', 'application/csv', 'text/csv'].includes(contentType) + ['text/plain', 'application/csv', 'text/csv'].includes(mimeType) ) { return ContentRenderType.Text - } else if (contentType?.indexOf('image/') === 0) { + } else if (mimeType?.indexOf('image/') === 0) { return ContentRenderType.Image } return ContentRenderType.Other @@ -761,11 +773,11 @@ export class DocumentDetailComponent let modal = this.modalService.open(ConfirmDialogComponent, { backdrop: 'static', }) - modal.componentInstance.title = $localize`Confirm delete` - modal.componentInstance.messageBold = $localize`Do you really want to delete document "${this.document.title}"?` - modal.componentInstance.message = $localize`The files for this document will be deleted permanently. This operation cannot be undone.` + modal.componentInstance.title = $localize`Confirm` + modal.componentInstance.messageBold = $localize`Do you really want to move the document "${this.document.title}" to the trash?` + modal.componentInstance.message = $localize`Documents can be restored prior to permanent deletion.` modal.componentInstance.btnClass = 'btn-danger' - modal.componentInstance.btnCaption = $localize`Delete document` + modal.componentInstance.btnCaption = $localize`Move to trash` this.subscribeModalDelete(modal) // so can be re-subscribed if error } @@ -800,23 +812,23 @@ export class DocumentDetailComponent ]) } - redoOcr() { + reprocess() { let modal = this.modalService.open(ConfirmDialogComponent, { backdrop: 'static', }) - modal.componentInstance.title = $localize`Redo OCR confirm` - modal.componentInstance.messageBold = $localize`This operation will permanently redo OCR for this document.` - modal.componentInstance.message = $localize`This operation cannot be undone.` + modal.componentInstance.title = $localize`Reprocess confirm` + modal.componentInstance.messageBold = $localize`This operation will permanently recreate the archive file for this document.` + modal.componentInstance.message = $localize`The archive file will be re-generated with the current settings.` modal.componentInstance.btnClass = 'btn-danger' modal.componentInstance.btnCaption = $localize`Proceed` modal.componentInstance.confirmClicked.subscribe(() => { modal.componentInstance.buttonsEnabled = false this.documentsService - .bulkEdit([this.document.id], 'redo_ocr', {}) + .bulkEdit([this.document.id], 'reprocess', {}) .subscribe({ next: () => { this.toastService.showInfo( - $localize`Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.` + $localize`Reprocess operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.` ) if (modal) { modal.close() @@ -989,7 +1001,7 @@ export class DocumentDetailComponent ) } - filterDocuments(items: ObjectWithId[] | NgbDateStruct[]) { + filterDocuments(items: ObjectWithId[] | NgbDateStruct[], type?: DataType) { const filterRules: FilterRule[] = items.flatMap((i) => { if (i.hasOwnProperty('year')) { const isoDateAdapter = new ISODateAdapter() @@ -1008,30 +1020,28 @@ export class DocumentDetailComponent value: dateBefore.toISOString().substring(0, 10), }, ] - } else if (i.hasOwnProperty('last_correspondence')) { - // Correspondent - return { - rule_type: FILTER_CORRESPONDENT, - value: (i as Correspondent).id.toString(), - } - } else if (i.hasOwnProperty('path')) { - // Storage Path - return { - rule_type: FILTER_STORAGE_PATH, - value: (i as StoragePath).id.toString(), - } - } else if (i.hasOwnProperty('is_inbox_tag')) { - // Tag - return { - rule_type: FILTER_HAS_TAGS_ALL, - value: (i as Tag).id.toString(), - } - } else { - // Document Type, has no specific props - return { - rule_type: FILTER_DOCUMENT_TYPE, - value: (i as DocumentType).id.toString(), - } + } + switch (type) { + case DataType.Correspondent: + return { + rule_type: FILTER_CORRESPONDENT, + value: (i as Correspondent).id.toString(), + } + case DataType.DocumentType: + return { + rule_type: FILTER_DOCUMENT_TYPE, + value: (i as DocumentType).id.toString(), + } + case DataType.StoragePath: + return { + rule_type: FILTER_STORAGE_PATH, + value: (i as StoragePath).id.toString(), + } + case DataType.Tag: + return { + rule_type: FILTER_HAS_TAGS_ALL, + value: (i as Tag).id.toString(), + } } }) @@ -1110,6 +1120,7 @@ export class DocumentDetailComponent this.documentsService .bulkEdit([this.document.id], 'split', { pages: modal.componentInstance.pagesString, + delete_originals: modal.componentInstance.deleteOriginal, }) .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe({ @@ -1138,7 +1149,6 @@ export class DocumentDetailComponent }) modal.componentInstance.title = $localize`Rotate confirm` modal.componentInstance.messageBold = $localize`This operation will permanently rotate the original version of the current document.` - modal.componentInstance.message = $localize`This will alter the original copy.` modal.componentInstance.btnCaption = $localize`Proceed` modal.componentInstance.documentID = this.document.id modal.componentInstance.showPDFNote = false @@ -1173,4 +1183,41 @@ export class DocumentDetailComponent }) }) } + + deletePages() { + let modal = this.modalService.open(DeletePagesConfirmDialogComponent, { + backdrop: 'static', + }) + modal.componentInstance.title = $localize`Delete pages confirm` + modal.componentInstance.messageBold = $localize`This operation will permanently delete the selected pages from the original document.` + modal.componentInstance.btnCaption = $localize`Proceed` + modal.componentInstance.documentID = this.document.id + modal.componentInstance.confirmClicked + .pipe(takeUntil(this.unsubscribeNotifier)) + .subscribe(() => { + modal.componentInstance.buttonsEnabled = false + this.documentsService + .bulkEdit([this.document.id], 'delete_pages', { + pages: modal.componentInstance.pages, + }) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) + .subscribe({ + next: () => { + this.toastService.showInfo( + $localize`Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.` + ) + modal.close() + }, + error: (error) => { + if (modal) { + modal.componentInstance.buttonsEnabled = true + } + this.toastService.showError( + $localize`Error executing delete pages operation`, + error + ) + }, + }) + }) + } } diff --git a/src-ui/src/app/components/document-history/document-history.component.html b/src-ui/src/app/components/document-history/document-history.component.html index 8ada7880d..c63a1223c 100644 --- a/src-ui/src/app/components/document-history/document-history.component.html +++ b/src-ui/src/app/components/document-history/document-history.component.html @@ -27,31 +27,33 @@ } {{ entry.action | titlecase }}
- @if (entry.action === AuditLogAction.Update) { -
    - @for (change of entry.changes | keyvalue; track change.key) { - @if (change.value["type"] === 'm2m') { -
  • - {{ change.value["operation"] | titlecase }}  - {{ change.key | titlecase }}:  - {{ change.value["objects"].join(', ') }} -
  • - } - @else if (change.value["type"] === 'custom_field') { -
  • - {{ change.value["field"] }}:  - {{ change.value["value"] }} -
  • - } - @else { -
  • - {{ change.key | titlecase }}:  - {{ change.value[1] }} -
  • - } +
      + @for (change of entry.changes | keyvalue; track change.key) { + @if (change.value["type"] === 'm2m') { +
    • + {{ change.value["operation"] | titlecase }}  + {{ change.key | titlecase }}:  + {{ change.value["objects"].join(', ') }} +
    • } -
    - } + @else if (change.value["type"] === 'custom_field') { +
  • + {{ change.value["field"] }}:  + {{ change.value["value"] }} +
  • + } + @else { +
  • + {{ change.key | titlecase }}:  + @if (change.key === 'content') { + {{ change.value[1]?.substring(0,100) }}... + } @else { + {{ change.value[1] }} + } +
  • + } + } +
} } diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html index 1ee0d61e3..2b9a20f7e 100644 --- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html +++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -107,8 +107,8 @@
 Actions
-

- @if (document.__search_hit__?.score && document.__search_hit__.highlights) { + @if (document.__search_hit__ && document.__search_hit__.highlights) { } @for (highlight of searchNoteHighlights; track highlight) { @@ -72,7 +72,7 @@

@if (displayFields.includes(DisplayField.NOTES) && notesEnabled && document.notes.length) { } @if (displayFields.includes(DisplayField.DOCUMENT_TYPE) && document.document_type) { @@ -95,7 +95,7 @@ @if (displayFields.includes(DisplayField.CREATED) || displayFields.includes(DisplayField.ADDED)) {
- Created: {{ document.created | customDate }} + Created: {{ document.created_date | customDate }} Added: {{ document.added | customDate }} Modified: {{ document.modified | customDate }}
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 5d565ddf2..9667163fb 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -62,14 +62,14 @@
- Created: {{ document.created | customDate }} + Created: {{ document.created_date | customDate }} Added: {{ document.added | customDate }} Modified: {{ document.modified | customDate }}
- {{document.created | customDate:'mediumDate'}} + {{document.created_date | customDate:'mediumDate'}}
} diff --git a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts index 2d02ba983..c0053353b 100644 --- a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts +++ b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts @@ -12,6 +12,7 @@ import { CorrespondentService } from 'src/app/services/rest/correspondent.servic import { ToastService } from 'src/app/services/toast.service' import { CorrespondentEditDialogComponent } from '../../common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component' import { ManagementListComponent } from '../management-list/management-list.component' +import { takeUntil } from 'rxjs' @Component({ selector: 'pngx-correspondent-list', @@ -63,6 +64,26 @@ export class CorrespondentListComponent extends ManagementListComponent { + this.data = c.results + this.collectionSize = c.count + this.isLoading = false + }) + } + getDeleteMessage(object: Correspondent) { return $localize`Do you really want to delete the correspondent "${object.name}"?` } 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 3fbf18e09..9453affd5 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 @@ -52,7 +52,7 @@ export abstract class ManagementListComponent implements OnInit, OnDestroy { constructor( - private service: AbstractNameFilterService, + protected service: AbstractNameFilterService, private modalService: NgbModal, private editDialogComponent: any, private toastService: ToastService, @@ -81,8 +81,8 @@ export abstract class ManagementListComponent public isLoading: boolean = false private nameFilterDebounce: Subject - private unsubscribeNotifier: Subject = new Subject() - private _nameFilter: string + protected unsubscribeNotifier: Subject = new Subject() + protected _nameFilter: string public selectedObjects: Set = new Set() public togggleAll: boolean = false diff --git a/src-ui/src/app/data/document.ts b/src-ui/src/app/data/document.ts index 7b7c6f786..1571d2a53 100644 --- a/src-ui/src/app/data/document.ts +++ b/src-ui/src/app/data/document.ts @@ -144,6 +144,8 @@ export interface Document extends ObjectWithPermissions { added?: Date + deleted_at?: Date + original_file_name?: string archived_file_name?: string diff --git a/src-ui/src/app/data/ui-settings.ts b/src-ui/src/app/data/ui-settings.ts index 6f8f246ff..ad88b2e57 100644 --- a/src-ui/src/app/data/ui-settings.ts +++ b/src-ui/src/app/data/ui-settings.ts @@ -12,6 +12,11 @@ export interface UiSetting { default: any } +export enum GlobalSearchType { + ADVANCED = 'advanced', + TITLE_CONTENT = 'title-content', +} + export const SETTINGS_KEYS = { LANGUAGE: 'language', APP_LOGO: 'app_logo', @@ -57,6 +62,8 @@ export const SETTINGS_KEYS = { DOCUMENT_EDITING_REMOVE_INBOX_TAGS: 'general-settings:document-editing:remove-inbox-tags', SEARCH_DB_ONLY: 'general-settings:search:db-only', + SEARCH_FULL_TYPE: 'general-settings:search:more-link', + EMPTY_TRASH_DELAY: 'trash_delay', } export const SETTINGS: UiSetting[] = [ @@ -225,4 +232,14 @@ export const SETTINGS: UiSetting[] = [ type: 'boolean', default: false, }, + { + key: SETTINGS_KEYS.SEARCH_FULL_TYPE, + type: 'string', + default: GlobalSearchType.TITLE_CONTENT, + }, + { + key: SETTINGS_KEYS.EMPTY_TRASH_DELAY, + type: 'number', + default: 30, + }, ] diff --git a/src-ui/src/app/services/rest/abstract-name-filter-service.ts b/src-ui/src/app/services/rest/abstract-name-filter-service.ts index 1018f0fa2..03c7e5470 100644 --- a/src-ui/src/app/services/rest/abstract-name-filter-service.ts +++ b/src-ui/src/app/services/rest/abstract-name-filter-service.ts @@ -17,9 +17,10 @@ export abstract class AbstractNameFilterService< sortField?: string, sortReverse?: boolean, nameFilter?: string, - fullPerms?: boolean + fullPerms?: boolean, + extraParams?: { [key: string]: any } ) { - let params = {} + let params = extraParams ?? {} if (nameFilter) { params['name__icontains'] = nameFilter } diff --git a/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts b/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts index 7b5254bfd..0cabcef02 100644 --- a/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts +++ b/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts @@ -100,13 +100,13 @@ export const commonAbstractPaperlessServiceTests = (endpoint, ServiceClass) => { test('should call appropriate api endpoint for get a few objects', () => { subscription = service.getFew([1, 2, 3]).subscribe() const req = httpTestingController.expectOne( - `${environment.apiBaseUrl}${endpoint}/?id__in=1,2,3` + `${environment.apiBaseUrl}${endpoint}/?id__in=1,2,3&ordering=-id` ) expect(req.request.method).toEqual('GET') req.flush([]) subscription = service.getFew([4, 5, 6], { foo: 'bar' }).subscribe() const req2 = httpTestingController.expectOne( - `${environment.apiBaseUrl}${endpoint}/?id__in=4,5,6&foo=bar` + `${environment.apiBaseUrl}${endpoint}/?id__in=4,5,6&ordering=-id&foo=bar` ) expect(req2.request.method).toEqual('GET') req2.flush([]) 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 9305ed8b6..363575344 100644 --- a/src-ui/src/app/services/rest/abstract-paperless-service.ts +++ b/src-ui/src/app/services/rest/abstract-paperless-service.ts @@ -94,6 +94,7 @@ export abstract class AbstractPaperlessService { getFew(ids: number[], extraParams?): Observable> { let httpParams = new HttpParams() httpParams = httpParams.set('id__in', ids.join(',')) + httpParams = httpParams.set('ordering', '-id') for (let extraParamKey in extraParams) { if (extraParams[extraParamKey] != null) { httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey]) diff --git a/src-ui/src/app/services/trash.service.spec.ts b/src-ui/src/app/services/trash.service.spec.ts new file mode 100644 index 000000000..7457960e5 --- /dev/null +++ b/src-ui/src/app/services/trash.service.spec.ts @@ -0,0 +1,59 @@ +import { TestBed } from '@angular/core/testing' + +import { TrashService } from './trash.service' +import { + HttpClientTestingModule, + HttpTestingController, +} from '@angular/common/http/testing' +import { environment } from 'src/environments/environment' + +describe('TrashService', () => { + let service: TrashService + let httpTestingController: HttpTestingController + + beforeEach(() => { + TestBed.configureTestingModule({ + imports: [HttpClientTestingModule], + }) + service = TestBed.inject(TrashService) + httpTestingController = TestBed.inject(HttpTestingController) + }) + + it('should call correct endpoint for getTrash', () => { + service.getTrash().subscribe() + const req = httpTestingController.expectOne( + `${environment.apiBaseUrl}trash/?page=1` + ) + expect(req.request.method).toEqual('GET') + }) + + it('should call correct endpoint for emptyTrash', () => { + service.emptyTrash().subscribe() + const req = httpTestingController.expectOne( + `${environment.apiBaseUrl}trash/` + ) + expect(req.request.method).toEqual('POST') + expect(req.request.body).toEqual({ action: 'empty' }) + + service.emptyTrash([1, 2, 3]).subscribe() + const req2 = httpTestingController.expectOne( + `${environment.apiBaseUrl}trash/` + ) + expect(req2.request.body).toEqual({ + action: 'empty', + documents: [1, 2, 3], + }) + }) + + it('should call correct endpoint for restoreDocuments', () => { + service.restoreDocuments([1, 2, 3]).subscribe() + const req = httpTestingController.expectOne( + `${environment.apiBaseUrl}trash/` + ) + expect(req.request.method).toEqual('POST') + expect(req.request.body).toEqual({ + action: 'restore', + documents: [1, 2, 3], + }) + }) +}) diff --git a/src-ui/src/app/services/trash.service.ts b/src-ui/src/app/services/trash.service.ts new file mode 100644 index 000000000..6a8bbf1f0 --- /dev/null +++ b/src-ui/src/app/services/trash.service.ts @@ -0,0 +1,37 @@ +import { HttpClient, HttpParams } from '@angular/common/http' +import { Injectable } from '@angular/core' +import { Observable } from 'rxjs' +import { environment } from 'src/environments/environment' +import { Document } from '../data/document' +import { Results } from '../data/results' + +@Injectable({ + providedIn: 'root', +}) +export class TrashService { + constructor(private http: HttpClient) {} + + public getTrash(page: number = 1): Observable> { + const httpParams = new HttpParams().set('page', page.toString()) + return this.http.get>(`${environment.apiBaseUrl}trash/`, { + params: httpParams, + }) + } + + public emptyTrash(documents?: number[]): Observable { + const data = { + action: 'empty', + } + if (documents?.length) { + data['documents'] = documents + } + return this.http.post(`${environment.apiBaseUrl}trash/`, data) + } + + public restoreDocuments(documents: number[]): Observable { + return this.http.post(`${environment.apiBaseUrl}trash/`, { + action: 'restore', + documents, + }) + } +} diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 0e7999be2..5cceb20e7 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + 'api/', apiVersion: '5', appTitle: 'Paperless-ngx', - version: '2.8.3-dev', + version: '2.10.1-dev', 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 3e62acb61..f59edd5ef 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Kon nie toevoeg nie: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Vorige @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Volgende @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Einde @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Die paneelbord kan gebruik word om bewaarde aansigte, soos ’n ‘inmandjie’, te bekyk. Daardie instellings word, sodra u een geskep het, gevind onder Instellings > Bewaarde aansigte. @@ -433,7 +445,7 @@ 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 - 173 + 175 Sleep-en-los dokumente hier om te begin oplaai, of plaas dit in die verbruik-vouer. U kan ook dokumente enige plek sleep-en-los op alle ander blaaie van die webtoep. Sodra u dit doen, sal Paperless-ngx sy masjienleeralgoritmes begin oplei. @@ -441,7 +453,7 @@ 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 - 178 + 180 Die dokumentlyste toon al u dokumente en laat filtrering en massawysiging toe. Daar is drie verskillende aansigstyle: lys, klein kaarte en groot kaarte. ’n Lys van dokumente wat tans oop is vir wysiging word in die systaaf getoon. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Die filtreernutsmiddels laat u dokumente vinnig vind met verskeie soektogte, datums, etikette, ens. @@ -457,7 +469,7 @@ 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 - 191 + 193 Enige kombinasie van filters kan as ’n ‘aansig’ bewaar word, wat dan op die paneelbord en/of systaaf vertoon kan word. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etikette, korrespondente, dokumenttipes en bergpaaie kan alles deur hierdie blaaie bestuur word. Dit kan ook vanuit die dokumentwysigaansig geskep word. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Dankie! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Daar is nog <em>baie</em> meer funksies en inligting wat ons nie hier behandel het nie, maar u sal hiermee kan begin. Bekyk die dokumentasie of besoek die projek op GitHub vir meer inligting of om probleme te rapporteer. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Ten slotte, namens elke bydraer aan hierdie gemeenskapsondersteunde projek, dankie dat u Paperless-ngx gebruik! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Verwerp @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Toon bevestigingsdialoë - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Daar sal altyd vir bevestiging gevra word by die skrap van dokumente. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Gevorderde soektog Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktiveer notas @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Kennisgewings @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentverwerking @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Toon kennisgewings wanneer nuwe dokumente bespeur is @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Toon kennisgewings wanneer dokumentverwerking suksesvol voltooi is @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Toon kennisgewings wanneer dokumentverwerking misluk @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Onderdruk kennisgewings op paneelbord @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Dit sal alle boodskappe oor dokumentverwerking op die paneelbord onderdruk. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Toon waarskuwing wanneer bewaarde aansigte gesluit word met onbewaarde veranderinge @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Verstek @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Geen bewaarde aansigte gedefinieer. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Bewaarde aansig "" is geskrap. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Instellings is suksesvol bewaar. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Instellings is suksesvol bewaar. Moet herlaai word om sommige veranderinge toe te pas. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Herlaai nou @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Fout toe instellings op bediener bewaar is. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Bevestig skrap + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Dit kan nie ontdaan word nie. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Hierdie bewerking sal hierdie gebruikersrekening permanent skrap. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Dit kan nie ontdaan word nie. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentasie @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondente @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is beskikbaar. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klik om te bekyk. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx kan outomaties na bywerkings soek @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Hoe werk dit? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Bywerking beskikbaar @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Gevorderde soektog + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bevestig + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Bladsy + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Bladsy - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Voeg etiket toe + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter dokumente met hierdie etikette - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Toon alles + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtreer volgens korrespondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtreer volgens dokumenttipe + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtreer volgens bergpad + View Preview @@ -5729,11 +6023,19 @@ Totale karakters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Ander @@ -5888,8 +6190,8 @@ Laai oorspronklike af - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Voer OCR weer uit + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorige @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Argiefreeksnommer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum geskep @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhoud @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum gewysig @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum toegevoeg @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Medialêernaam @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Oorspronklike lêernaam @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Oorspronklike MD5 kontrolesom @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Oorspronklike lêergrootte @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Oorspronklike MIME-tipe @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-kontrolesomargief @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Lêergrootteargief @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Oorspronklike dokumentmetadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Geargiveerdedokumentmetadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Voorskou @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Bewaar & volgende @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Voer wagwoord in @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Fout by die laai van die inhoud: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fout by ophaal van metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fout by ophaal van voorstelle. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument is suksesvol bewaar. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Fout by bewaar van dokument - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Bevestig skrap + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Wil u regtig dokument skrap"? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Die lêers vir hierdie dokument word permanent geskrap. Dit kan nie ontdaan word nie. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Skrap dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Bevestig OCR-heruitvoer - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Hierdie bewerking sal OCR permanent vir hierdie dokument heruitvoer. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Heruitvoer van OCR sal in die agtergrond begin. Sluit en heropen of herlaai die dokument nadat die bewerking voltooi is om nuwe inhoud te sien. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Bevestig skrap - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - gekose dokument(e) sal permanent geskrap word. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Geskrapte dokument(e) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - OCR sal permanent heruitgevoer word vir gekose dokument(e) + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtreer volgens korrespondent - Filter by tag @@ -6970,40 +7288,8 @@ Bekyk notas - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - notas - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtreer volgens dokumenttipe - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtreer volgens bergpad - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Geskep: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondente @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Laas gebruik @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Wil u regtig die korrespondent “” skrap? diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index f1cec32d9..d2a36d37a 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -36,7 +36,7 @@ node_modules/src/ngb-config.ts 13 - اختر الشهر + تحديد الشهر «« @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 تمّت إضافة المستند إلى Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 تعذّر إضافة : @@ -305,15 +317,15 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 - الوثيقة تتم معالجتها الآن من قِبَل هذا التطبيق Paperless-ngx. + المستند يتم معالجته الآن من قِبَل التطبيق Paperless-ngx. Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 السابق @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 التالي @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 النهاية @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 يمكن استخدام لوحة التحكم لعرض العروض المحفوظة، مثل 'علبة الوارد'. بواسطة الإعدادات يمكنك تفعيلها > المشاهدات المحفوظة بمجرد إنشاء بعضها. @@ -433,15 +445,15 @@ 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 - 173 + 175 - سحب وإسقاط المستندات هنا للبدء في تحميلها أو وضعها في المجلد المستهلك. يمكنك أيضًا سحب وإسقاط المستندات في أي مكان على جميع الصفحات الأخرى من تطبيق الويب. بمجرد ذلك، سيبدأ هذا التطبيق في تدريب خوارزميات تعلم الآلات. + قم بسحب المستندات وإفلاتها هنا لبدء رفعها أو وضعها في مجلد الاستهلاك. يمكنك أيضا سحب المستندات وإفلاتها في أي مكان على جميع الصفحات الأخرى لتطبيق الويب. بمجرد القيام بذلك ، سيبدأ Paperless-ngx في تدريب خوارزميات التعلم الآلي الخاصة به. The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 178 + 180 تظهر قائمة المستندات جميع مستنداتك وتسمح بالتصفية والتحرير بالجملة. وهناك ثلاث أنماط مختلفة للعرض: القائمة والبطاقات الصغيرة والبطاقات الكبيرة، وفي الشريط الجانبي قائمة بالمستندات المفتوحة حاليا للتحرير. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 أدوات التصفية تسمح لك بالعثور بسرعة على المستندات باستخدام مختلف عمليات البحث والتواريخ والعلامات وما إلى ذلك. @@ -457,7 +469,7 @@ 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 - 191 + 193 يمكن حفظ أي مزيج من التصفيات مثل "عرض" يمكنك عرضه بعد ذلك على لوحة التحكم / أو الشريط الجانبي. @@ -465,7 +477,7 @@ 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 - 196 + 198 يمكن إدارة جميع العلامات والمراسلين وأنواع الوثائق ومسارات التخزين باستخدام هذه الصفحات. ويمكن أيضا إنشاؤها من تعديل عرض المستند. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,15 +497,15 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 - تمنحك مسارات العمل Wf المزيد من التحكم في مسارات 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 تحقق من إعدادات التعديلات المختلفة على تطبيق الويب و تبديل الإعدادات لطرق العرض المحفوظة. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 شكراً لك! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 هناك <em>أطنان</em> المزيد من الميزات والمعلومات التي لم نغطيها هنا، ولكن يجب يكون هذا كافيا لك للبداية. يرجى مراجعة المستندات أو زيارة المشروع على GitHub لمعرفة المزيد أو للإبلاغ عن المشكلات. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx! @@ -547,37 +559,7 @@ src/app/components/admin/config/config.component.html 4 - خيارات التكوين الشاملة للتطبيق التي تنطبق على <strong>جميع</strong> مستخدِمي هذا التطبيق paperless-ngx. يمكن أيضًا تعيين الخيارات باستخدام متغيرات البيئة أو ملف التكوين ولكن القيمة هنا ستكون لها الأولوية دائمًا. - - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - + خيارات تهيئة التطبيق العامة التي تنطبق على <strong>كل</strong> مستخدم لهذا التثبيت من Paperless-ngx. يمكن أيضا تعيين الخيارات باستخدام متغيرات البيئة أو ملف التهيئة ولكن القيمة هنا ستكون لها الأسبقية دائما. Read the documentation about this setting @@ -585,7 +567,7 @@ src/app/components/admin/config/config.component.html 25 - طاِلع توثيق هذا الإعداد + قراءة الوثائق المتعلقة بهذا الإعداد Enable @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 تجاهل @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -677,7 +659,7 @@ src/app/components/admin/config/config.component.ts 81 - حدث خطأ في استرجاع التكوين + خطأ في استرداد التهيئة Invalid JSON @@ -685,7 +667,7 @@ src/app/components/admin/config/config.component.ts 107 - JSON غير صالح + ملف JSON غير صالح Configuration updated @@ -741,7 +723,7 @@ src/app/components/admin/logs/logs.component.html 4 - راجع ملفات سجلات الحركة للتطبيق ولفحص البريد الإلكتروني. + راجع ملفات السجلات للتطبيق ولفحص البريد الإلكتروني. Auto refresh @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -837,7 +823,7 @@ src/app/components/admin/settings/settings.component.html 4 - خيارات لتخصيص المظاهر والإشعارات والآراء المحفوظة والمزيد. تطبق الإعدادات على <strong>المستخدم الحالي فقط</strong>. + خيارات لتخصيص المظهر والإشعارات وطرق العرض المحفوظة والمزيد. تطبق الإعدادات على <strong>المستخدم الحالي فقط</strong>. Start tour @@ -845,7 +831,7 @@ src/app/components/admin/settings/settings.component.html 8 - ابدأ جولة + بدء الجولة System Status @@ -961,7 +947,7 @@ src/app/components/admin/settings/settings.component.html 127 - استخدم عارض PDF المقدم من المتصفح + استخدام عارض PDF الذي يوفره المتصفح This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -969,7 +955,7 @@ src/app/components/admin/settings/settings.component.html 127 - عادة ما يكون هذا أسرع لعرض مستندات PDF الكبيرة، ولكن قد لا يعمل على بعض المتصفحات. + عادة ما يكون هذا أسرع لعرض مستندات PDF الكبيرة ، ولكنه قد لا يعمل على بعض المتصفحات. Sidebar @@ -985,7 +971,7 @@ src/app/components/admin/settings/settings.component.html 138 - استخدم الشريط الجانبي 'نحيف' (الأيقونات فقط) + استخدام الشريط الجانبي "النحيف" (الايقونات فقط) Dark mode @@ -1081,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - إزالة سمة (أو سمات) البريد الوارد تلقائياً عند الحفظ + إزالة وسم أو وسوم البريد الوارد تلقائياً عند الحفظ Bulk editing @@ -1099,14 +1085,6 @@ إظهار تأكيد الحِوَارات - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - حذف المستندات سيطلب التأكيد دائما. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - Global search + البحث العام - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - البحث في قاعدة البيانات فقط (لا تشمل نتائج البحث المتقدمة) + عدم تضمين نتائج البحث المتقدم + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + روابط البحث الكاملة إلى + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + البحث في العنوان والمحتوى + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + بحث متقدم Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,15 +1169,15 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 - السماح بالملاحظات + تمكين الملاحظات Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,15 +1233,15 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 - الأذونات الافتراضية + الصلاحيات الافتراضية Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 تنطبق الإعدادات على حساب المستخدم هذا للعناصر (قواعد البريد، إلخ) التي تم إنشاؤها عبر واجهة المستخدم @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 المالك الافتراضي @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,19 +1269,19 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 - أذونات العرض الافتراضية + صلاحيات العرض الافتراضية Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,15 +1349,15 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 - ‏أذون ‏التعديل الافتراضية + صلاحيات ‏التعديل الافتراضية Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 الإشعارات @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 معالجة المستندات @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 إظهار الإشعارات عند وجود مستندات جديدة @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 إظهار الإشعارات عند اكتمال معالجة المستندات بنجاح @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 إظهار الإشعارات عند فشل معالجة المستندات @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 منع الإشعارات في لوحة التحكم @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 سيؤدي هذا إلى إلغاء جميع الرسائل حول حالة معالجة المستندات في لوحة التحكم. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,15 +1445,15 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 - إظهار التحذير عند إغلاق المشاهدات المحفوظة مع التغييرات غير المحفوظة + إظهار تحذير عند إغلاق طرق العرض المحفوظة بتغييرات غير محفوظة Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 حجم صفحات المستند @@ -1663,23 +1693,23 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 - عرض بتنسيق + عرض كـ Table src/app/components/admin/settings/settings.component.html - 369 + 385 - جدول + الجدول Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 بطاقات صغيرة @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 بطاقات كبيرة @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 الافتراضي @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 لا توجد آراء محفوظة. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,19 +1857,19 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts 63 - خطأ في استرجاع المجموعات + خطأ في استرداد المجموعات Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 العرض المحفوظ "" مُسح. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 حُفظت الإعدادات بنجاح. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 حفظت الإعدادات بنجاح. إعادة تحميل مطلوب لتطبيق بعض التغييرات. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 إعادة تحميل الآن @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,9 +1913,9 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 - حدث خطأ أثناء تخزين الإعدادات على السيرفر. + خطأ أثناء تخزين الإعدادات على الخادم. File Tasks @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2089,7 +2127,7 @@ src/app/components/admin/tasks/tasks.component.ts 68 - رفض + استبعاد Open Document @@ -2113,7 +2151,7 @@ src/app/components/admin/tasks/tasks.component.html 111 - ( محددة) + ( محددة) Failed @@ -2153,7 +2191,7 @@ src/app/components/admin/tasks/tasks.component.ts 31 - تحديد الرفض + استبعاد المحدد Dismiss all @@ -2161,7 +2199,7 @@ src/app/components/admin/tasks/tasks.component.ts 32 - رفض الجميع + استبعاد الكل Confirm Dismiss All @@ -2169,7 +2207,7 @@ src/app/components/admin/tasks/tasks.component.ts 65 - تأكيد رفض الكل + تأكيد استبعاد الكل Dismiss all tasks? @@ -2177,7 +2215,7 @@ src/app/components/admin/tasks/tasks.component.ts 66 - تجاهل كل مهام؟ + استبعاد جميع المهام الـ ؟ queued @@ -2185,7 +2223,7 @@ src/app/components/admin/tasks/tasks.component.ts 135 - في قائمة الانتظار + قيد الانتظار started @@ -2193,7 +2231,7 @@ src/app/components/admin/tasks/tasks.component.ts 137 - بدأ + بدات completed @@ -2201,7 +2239,7 @@ src/app/components/admin/tasks/tasks.component.ts 139 - اكتمل + مكتمل failed @@ -2209,7 +2247,207 @@ src/app/components/admin/tasks/tasks.component.ts 141 - فشلت + فشل + + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + سلة المهملات + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + إدارة المستندات المهملة التي تنتظر الحذف. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + استعادة المحدد + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + حذف المحدد + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + إفراغ سلة المهملات + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + المتبقي + + + days + + src/app/components/admin/trash/trash.component.html + 58 + + الأيام المتبقية + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + استعادة + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {مستند واحد في السلة} other { إجمالي المستندات في السلة}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + تأكيد الحذف + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + هذه العملية ستحذف هذا المستند نهائياً. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + لا يمكن التراجع عن هذه العملية. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + تم حذف المستند + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + هذه العملية ستقوم بحذف المستندات المحددة بشكل دائم. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 77 + + هذه العملية ستقوم بحذف جميع المستندات الموجودة في سلة المهملات بشكل دائم. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + تم حذف المستند (المستندات) + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + تم استعادة المستند + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + تم استعادة المستند (المستندات) Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2397,7 +2631,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 159 - تم تغيير كلمة المرور، سيتم تسجيل خروجك مؤقتا. + تم تغيير كلمة المرور ، سيتم تسجيل خروجك مؤقتاً. Saved user "". @@ -2429,51 +2663,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 115 - هذه العملية ستقوم بحذف حساب المستخدم هذا بشكل دائم. - - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - لا يمكن التراجع عن هذه العملية. + ستؤدي هذه العملية إلى حذف حساب المستخدم هذا نهائيا. Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2545,7 +2739,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 130 - خطأ في حذف المستخدم. + خطأ اثناء حذف المستخدم. Saved group "". @@ -2577,7 +2771,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 165 - هذه العملية ستقوم بحذف مجموعة المستخدم هذه بشكل دائم. + ستؤدي هذه العملية إلى حذف مجموعة المستخدمين هذه نهائيا. Deleted group @@ -2593,7 +2787,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 180 - حدث خطأ أثناء حذف المجموعة. + خطأ أثناء حذف المجموعة. by Paperless-ngx @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 الوثائق @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 مراسلون @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 أنواع المستند @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 مسارات التخزين @@ -2789,7 +2983,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - مسارات العمل Wf + سير العمل Mail @@ -2821,13 +3015,13 @@ src/app/components/app-frame/app-frame.component.html 237 - الضبط + التهيئة GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 Github @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 متوفر. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 انقر للعرض. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx يتحقق تلقائياً من وجود تحديثات @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 كيف يعمل هذا؟ @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 يتوفر تحديث @@ -2877,7 +3071,7 @@ src/app/components/app-frame/app-frame.component.ts 209 - تم تحديث عروض الشريط الجانبية + تم تحديث طرق عرض الشريط الجانبي Error updating sidebar views @@ -2885,7 +3079,7 @@ src/app/components/app-frame/app-frame.component.ts 212 - خطأ في تحديث عروض الشريط الجانبية + خطأ في تحديث طرق عرض الشريط الجانبي An error occurred while saving update checking settings. @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - بحث - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - بحث متقدم + البحث Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 فتح @@ -2931,15 +3117,15 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 - فلترة المستندات + تصفية المستندات Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,15 +3153,15 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 - لا توجد نتائج + بلا نتائج Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 المستندات @@ -2983,31 +3169,31 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 - Saved Views + طرق العرض المحفوظة Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 - أوسمة البحث + الوسوم Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 - Correspondents + جهات التراسل Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 أنواع المستندات @@ -3015,23 +3201,23 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 - Storage paths + مسارات التخزين Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 - المستخدمين + المستخدمون Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 المجموعات @@ -3039,57 +3225,57 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 - Custom fields + الحقول المخصصة Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 - Mail accounts + حسابات البريد Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 - Mail rules + قواعد البريد Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 - Workflows + سير العمل Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 - Successfully updated object. + تم تحديث الكائن بنجاح. Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 - Error occurred saving object. + حدث خطأ أثناء حفظ الكائن. Clear @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + أكّد + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + صفحة + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + من + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + الصفحات المطلوب إزالتها + Documents: @@ -3187,49 +3425,29 @@ إعادة توليد جميع البيانات الوصفية + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + حذف المستندات الأصلية بعد الدمج الناجح + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 - لاحظ أنه سيتم فقط تضمين ملفات PDF. + لاحظ أنه سيتم تضمين ملفات PDF فقط. Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 - لاحظ أنه سيتم تضمين ملفات PDF فقط. - - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - صفحة - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - من + لاحظ أنه سيتم تدوير ملفات PDF فقط. Add Split @@ -3239,6 +3457,14 @@ إضافة تقسيم + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + حذف المستند الأصلي بعد الفصل ناجح + View @@ -3265,7 +3491,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + حقول البحث Create new field @@ -3273,7 +3499,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 21 - Create new field + إنشاء حقل جديد Saved field "". @@ -3285,7 +3511,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 56 - تمّ حفظ الحقل "". + الحقل المحفوظ "". Error saving field. @@ -3617,7 +3843,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 37 - تجربة + اختبار No encryption @@ -3665,7 +3891,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 87 - تم الاتصال بخادم البريد بنجاح + تم الاتصال بنجاح بخادم البريد Unable to connect to the mail server @@ -3789,7 +4015,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - فلترة أسماء الملفات المرفقة التي تحتوي على + تصفية أسماء الملفات المرفقة التي تحتوي على Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -3805,7 +4031,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - فلترة أسماء الملفات المرفقة التي لا تحتوي على + تصفية أسماء الملفات المرفقة التي لا تحتوي على Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -3813,7 +4039,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - لا تستهلك المستندات التي تتطابق تماما مع اسم الملف هذا إذا تم تحديده. البطاقات البرية مثل *.pdf أو *الفاتورة* مسموح بها. الحالة غير حساسة. + لا تستهلك المستندات التي تتطابق تماما مع اسم الملف هذا إذا تم تحديده. يسمح باستخدام أحرف البدل مثل *.pdf أو *invoice*. غير حساس لحالة الأحرف. Action @@ -4241,7 +4467,7 @@ src/app/components/manage/workflows/workflows.component.html 18 - ترتيب الفرز + تسلسل الترتيب Enabled @@ -4253,7 +4479,7 @@ src/app/components/manage/workflows/workflows.component.html 30 - مفعل + مُمَكّن Triggers @@ -4265,7 +4491,7 @@ src/app/components/manage/workflows/workflows.component.html 20 - المحفزات + المشغلات Trigger Workflow On: @@ -4273,7 +4499,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 31 - تحفيز إطلاق سير العمل بـ: + تشغيل سير العمل على: Add Trigger @@ -4297,7 +4523,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 75 - إضافة اجراء + إضافة إجراء Trigger type @@ -4313,7 +4539,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 122 - المشغل للمستندات التي تطابق جميع الفلاتر المحددة أدناه. + مشغل للمستندات التي تطابق جميع عوامل التصفية المحددة أدناه. Filter filename @@ -4321,7 +4547,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 125 - تصفية اسم الملف + تصفية اسم المِلَفّ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -4329,7 +4555,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 125 - فقط المستندات التي تتطابق تماما مع اسم هذا المِلَفّ إذا. المحارف البديلة مثل *.pdf أو *الفواتير* مسموح بها. لأنها غير حساسة. + تطبق فقط على المستندات التي تطابق اسم هذا المِلَفّ. المحارف البديلة على سبيل المثال *.pdf أو *invoice* مسموح بها. غير حساسة لحالة الأحرف. Filter sources @@ -4345,7 +4571,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 128 - مسار التصفية + تصفية المسار Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -4353,7 +4579,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 128 - تطبيق على المستندات التي تتطابق مع هذا المسار. شرط الشمول و الفلترة المحددة مثل * مسموح بها. حالة الحروف تمّت تسويتها.</a> + تنطبق على المستندات التي تطابق هذا المسار. يسمح باستخدام أحرف البدل المحددة كـ *. تطبيع الحالة.</a> Filter mail rule @@ -4393,7 +4619,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 143 - فيها سِمَات tags + لديه الوسوم Has correspondent @@ -4401,7 +4627,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 144 - فيها مراسل + لديه جهة التراسل Has document type @@ -4409,7 +4635,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 145 - فيها نوع المستند + لديه نوع المستند Action type @@ -4433,7 +4659,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 160 - يمكن أن تتضمن بعض العناصر النائبة، انظر <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>المستندات</a>. + يمكن أن تتضمن بعض العناصر النائبة، راجع <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>التوثيق</a>. Assign tags @@ -4473,7 +4699,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 170 - تعيين أذونات العرض + تعيين صلاحيات العرض Assign edit permissions @@ -4481,7 +4707,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 189 - تعيين أذونات التعديل + تعيين صلاحيات التحرير Remove tags @@ -4489,7 +4715,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - حذف السِّمَات + إزالة الوسوم Remove all @@ -4521,7 +4747,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - حذف الكل + أزاله الكل Remove correspondents @@ -4529,7 +4755,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - حذف المراسلين + إزالة جهات التراسل Remove document types @@ -4537,7 +4763,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 228 - حذف أنواع المستندات + إزالة أنواع المستندات Remove storage paths @@ -4545,7 +4771,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 234 - حذف مسارات التخزين + إزالة مسارات التخزين Remove custom fields @@ -4553,7 +4779,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 240 - حذف الحقول المخصصة + إزالة الحقول المخصصة Remove owners @@ -4561,7 +4787,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 247 - حذف المُلَّاك + إزالة المُلًاك Remove permissions @@ -4569,7 +4795,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 253 - حذف الأُذُونات + إزالة الصلاحيات View permissions @@ -4577,7 +4803,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 256 - تعديل الأُذُونات + عرض الصلاحيات Edit permissions @@ -4585,7 +4811,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 275 - تعديل الأُذُونات + تحرير الصلاحيات Consume Folder @@ -4593,7 +4819,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 39 - ‏مِلَفّ الاستهلاك + مجلد الاستهلاك API Upload @@ -4641,7 +4867,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 69 - المهام + الواجبات Removal @@ -4649,7 +4875,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 73 - إزالة + الإزالة Create new workflow @@ -4665,7 +4891,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 146 - تعديل سير العمل + تحرير سير العمل All @@ -4774,7 +5000,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 452 - Open filter + فتح المرشح Keyboard shortcuts @@ -4782,7 +5008,7 @@ src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts 20 - Keyboard shortcuts + اختصارات لوحة المفاتيح Remove @@ -4866,7 +5092,27 @@ src/app/components/common/input/select/select.component.ts 158 - فلترة البحث في المستندات بواسطة + تصفية المستندات مع + + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + إزالة الرابط + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + فتح الرابط No documents found @@ -4890,7 +5136,7 @@ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts 29 - لم يتم تحديد اية عناصر + لم يتم تحديد أية عناصر Upload @@ -4906,7 +5152,7 @@ src/app/components/common/input/password/password.component.html 6 - عرض كلمة المرور + إظهار كلمة المرور Edit Permissions @@ -4959,7 +5205,7 @@ src/app/components/common/input/select/select.component.ts 92 - لم يتم العثور على أي عنصر + لم يتم العثور على أية عناصر Note: value has not yet been set and will not apply until explicitly changed @@ -4967,7 +5213,7 @@ src/app/components/common/input/switch/switch.component.html 39 - ملاحظة: لم يتم بعد تعيين القيمة ولن تنطبق حتى يتم تغييرها بشكل صريح + ملاحظة: لم يتم تعيين القيمة بعد ولن يتم تطبيقها حتى يتم تغييرها بشكل صريح Add tag @@ -4977,21 +5223,21 @@ إضافة علامة + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + إزالة الوسم + Filter documents with these Tags src/app/components/common/input/tags/tags.component.html 41 - تصفية الوثائق بهذه العلامات - - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - فتح الرابط + تصفية المستندات باستخدام هذه الوسوم What's this? @@ -5015,7 +5261,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 14 - دمج مع الأذونات الموجودة + دمج مع الصلاحيات الموجودة Set permissions @@ -5023,7 +5269,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 28 - تعيين الأذونات + تعيين الصلاحيات Edit permissions for @@ -5031,7 +5277,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 33 - تعديل الأذونات لـ + تحرير الصلاحيات لـ Existing owner, user and group permissions will be merged with these settings. @@ -5039,7 +5285,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 74 - أذونات المالك أو المستخدِم أو المجموعة سيتم دمجها مع هذه الإعدادات. + سيتم دمج صلاحيات المالك والمستخدم والمجموعة الحالية مع هذه الإعدادات. Any and all existing owner, user and group permissions will be replaced. @@ -5055,7 +5301,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 26 - مستنداتي + المستندات الخاصة بي Shared with me @@ -5063,7 +5309,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 36 - مُشارْك معي + تمت مشاركتها معي Shared by me @@ -5071,7 +5317,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 46 - تم المشاركة من قبلي + تمت المشاركة من قبلي Unowned @@ -5079,7 +5325,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 56 - غير مملوك + بلا مالك Hide unowned @@ -5123,7 +5369,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 63 - مأخوذ من المجموعة + موروثة من مجموعة Error loading preview @@ -5131,7 +5377,7 @@ src/app/components/common/preview-popup/preview-popup.component.html 4 - خطأ في تحميل المعاينة + خطأ أثناء تحميل المعاينة Edit Profile @@ -5139,7 +5385,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 3 - تعديل الملف الشخصي + تحرير الملف الشخصي Confirm Email @@ -5191,7 +5437,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 45 - تجديد رمز المصادقة + إعادة توليد رمز المصادقة Copied! @@ -5203,7 +5449,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 40 - تم النسخ! + تم النسخ ! Warning: changing the token cannot be undone @@ -5211,7 +5457,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 55 - تحذير: لا يمكن التراجع عن تغيير رمز المصادقة + تحذير: لا يمكن التراجع عن تغيير الرمز المميز Connected social accounts @@ -5219,7 +5465,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 59 - حسابات اجتماعية متصلة + حسابات شبكات اجتماعية متصلة Set a password before disconnecting social account. @@ -5227,7 +5473,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 63 - قم بتعيين كلمة مرور قبل قطع الاتصال بالحساب الاجتماعي. + قم بتعيين كلمة مرور قبل قطع الاتصال بالحساب الشبكة الاجتماعية. Disconnect @@ -5251,7 +5497,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 81 - تحذير: يتعذّر قطع الاتصال بالحسابات الاجتماعية + تحذير: لا يمكن التراجع عن فصل الحسابات الاجتماعية Connect new social account @@ -5275,7 +5521,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 136 - يجب أن تتطابق كلمة المرور + يجب أن تتطابق كلمات المرور Profile updated successfully @@ -5283,7 +5529,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 156 - تم تعديل الملف الشخصي بنجاح + تم تحديث الملف الشخصي بنجاح Error saving profile @@ -5291,7 +5537,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 168 - حدث خطأ أثناء حفظ الملف الشخصي + خطأ أثناء حفظ الملف الشخصي Error generating auth token @@ -5299,7 +5545,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 185 - خطأ في إنشاء رمز المصادقة + خطأ أثناء إنشاء رمز المصادقة Error disconnecting social account @@ -5307,7 +5553,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 210 - حدث خطأ عند قطع الاتصال بالحساب الاجتماعي + خطأ أثناء قطع الاتصال بحساب الشبكة الاجتماعية Select @@ -5343,7 +5589,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 23 - مشاركة الروابط + روابط المشاركة No existing links @@ -5359,7 +5605,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 33 - شارك + مشاركة Share archive version @@ -5375,7 +5621,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 51 - إنتهاء الصلاحية + منتهي الصلاحية 1 day @@ -5411,7 +5657,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 19 - ابدأ + اطلاقاً Error retrieving links @@ -5419,7 +5665,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 75 - خطأ في استرجاع الروابط + خطأ في استرداد الروابط days @@ -5435,7 +5681,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 123 - خطأ في حذف الرابط + خطأ أثناء حذف الرابط Error creating link @@ -5475,7 +5721,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 26 - نظام تشغيل الخادوم + نظام تشغيل الخادم Media Storage @@ -5483,7 +5729,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 28 - مخزن الوسائط + تخزين الوسائط available @@ -5499,7 +5745,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - المجموع + مجموع Database @@ -5531,7 +5777,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 56 - حالة ترحيل البيانات + حالة الترحيل Up to date @@ -5539,7 +5785,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 59 - مُحدّثة حتى اللحظة + محدث Latest Migration @@ -5547,7 +5793,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 64 - آخر ترحيل + أحدث عملية ترحيل Pending Migrations @@ -5555,7 +5801,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 66 - ترحيلات معلقة في الانتظار + عمليات الترحيل المعلقة Tasks @@ -5563,7 +5809,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 83 - مهام + المهام Redis Status @@ -5571,7 +5817,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 87 - حالة Redis + حالة خادم الـ Redis Celery Status @@ -5579,7 +5825,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 96 - حالة Celery + حالة تقنية Celery Search Index @@ -5619,7 +5865,7 @@ src/app/components/common/toasts/toasts.component.html 41 - نسخ الخطأ الخام + نسخ خطأ خام Hello , welcome to @@ -5627,7 +5873,7 @@ src/app/components/dashboard/dashboard.component.ts 38 - أهلا ، مرحبا بك في + أهلاً ، مرحبا بكم في Welcome to @@ -5643,7 +5889,7 @@ src/app/components/dashboard/dashboard.component.ts 71 - تم تحديث لوحة التحكم + تم تحديث لوحة المعلومات Error updating dashboard @@ -5651,7 +5897,7 @@ src/app/components/dashboard/dashboard.component.ts 74 - خطأ في تحديث لوحة التحكم + خطأ في تحديث لوحة المعلومات Show all @@ -5665,6 +5911,54 @@ عرض الكل + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + تصفية حسب المراسل + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + تصفية حسب نوع المستند + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + تصفية حسب مسار التخزين + View Preview @@ -5727,15 +6021,23 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 15 - اجمالي الحروف + إجمالي الأحرف + + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + الرقم التسلسلي الحالي للارشفة Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 - أخرى + غير ذلك Upload new documents @@ -5888,8 +6190,8 @@ تحميل النسخة الأصلية - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - إعادة OCR + إعادة المعالجة More like this @@ -5918,7 +6220,7 @@ src/app/components/document-detail/document-detail.component.html 57 - تقسيم + تجزئة Rotate @@ -5932,15 +6234,23 @@ تدوير + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + حذف الصفحة أو الصفحات + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 السابق @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 تفاصيل @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 الرقم التسلسلي للأرشيف @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 تاريخ الإنشاء @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 محتوى @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 تاريخ التعديل @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 تاريخ الإضافة @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 اسم ملف الوسائط @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 اسم الملف الأصلي @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 مجموع MD5 الاختباري للأصل @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 حجم الملف الأصلي @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 نوع mime الأصلي @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 مجموع MD5 الاختباري للأرشيف @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 حجم ملف الأرشيف @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 بيانات التعريف للمستند الأصلي @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 بيانات التعريف للمستند الأصلي @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 معاينة @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 ملاحظات @@ -6212,15 +6522,15 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 - السّجل التاريخي + السجل التاريخي Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 حفظ & التالي @@ -6228,15 +6538,15 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 - حفظ & وإغلاق + حفظ وإغلاق Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 أدخل كلمة المرور @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 حدث خطأ في تحميل المحتوى @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 تم اكتشاف تغييرات في المستند @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 إصدار هذا المستند في جلسة المتصفح الخاصة بك يبدو أقدم من الإصدار الحالي. @@ -6268,39 +6578,39 @@ 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 - 355 + 367 - حفظ المستند هنا قد يستبدل التغييرات الأخرى التي تم إجراؤها. لاستعادة الإصدار الحالي، تجاهَل التغييرات أو أغلِق المستند. + قد يؤدي حفظ المستند هنا إلى الكتابة فوق التغييرات الأخرى التي تم إجراؤها. لاستعادة الإصدار الموجود، تجاهل التغييرات أو أغلق المستند. Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 - حسناً + موافق Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 - Next document + المستند التالي Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 - Previous document + المستند السابق Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,15 +6622,15 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 - Save document + حفظ المستند Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 خطأ في استرجاع البيانات الوصفية @@ -6328,19 +6638,19 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 - خطأ في استرجاع الاقتراحات. + خطأ في استرداد الاقتراحات. Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 تم حفظ المستند بنجاح. @@ -6348,147 +6658,147 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 خطأ أثناء حفظ المستند - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - تأكيد الحذف + هل تريد حقاً نقل المستند "" إلى سلة المهملات؟ - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - هل تريد حقاً حذف المستند " + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + يمكن استعادة المستندات قبل حذفها نهائياً. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - ستحذف ملفات هذا المستند بشكل دائم. لا يمكن التراجع عن هذه العملية. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - حذف مستند + نقل لسلة المهملات Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 - حدث خطأ في أثناء حذف المستند + خطأ أثناء حذف المستند - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - إعادة تأكيد OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - هذه العملية ستعيد بشكل دائم OCR لهذا المستند. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - إعادة تشغيل OCR ستبدأ في الخلفية. إغلاق وإعادة فتح أو إعادة تحميل هذا المستند بعد اكتمال العملية لمشاهدة محتوى جديد. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + تأكيد إعادة المعالجة + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية. + + + Reprocess operation 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 + 831 + + ستبدأ عملية إعادة المعالجة في الخلفية. أغلق هذا المستند وأعد فتحه أو أعد تحميله بعد اكتمال العملية لرؤية محتوى جديد. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 - خطأ في تنفيذ العملية + خطأ أثناء تنفيذ العملية Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 - ملاءمة حجم الصفحة + احتواء الصفحة Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 - تأكيد التقسيم + تأكيد التجزئة This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 - هذه العملية ستؤدي إلى تقسيم المستند (أو المستندات) المحددة إلى مستندات جديدة. + هذه العملية ستؤدي إلى فصل المستند أو المستندات المحددة لمستندات جديدة. Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 - عملية التقسيم ستبدأ في الخلفية. + عملية التجزئة ستبدأ في الخلفية. Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 - خطأ في تنفيذ عملية التقسيم + خطأ أثناء تنفيذ عملية التجزئة Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 تأكيد التدوير @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 - هذه العملية ستؤدي إلى تدوير النسخة الأصلية من الوثيقة الحالية بشكل دائم. - - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - سيؤدي هذا إلى تغيير النسخة الأصلية. + هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند الحالي بشكل دائم. Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 سيبدأ التدوير في الخلفية. قم بإغلاق وإعادة فتح المستند بعد اكتمال العملية لرؤية التغييرات. @@ -6524,9 +6822,41 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 - خطأ في تنفيذ عملية التدوير + خطأ أثناء تنفيذ عملية التدوير + + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + تأكيد حذف الصفحات + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + ستؤدي هذه العملية إلى حذف الصفحات المحددة نهائيا من المستند الأصلي. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + ستبدأ عملية حذف الصفحات في الخلفية. أغلق هذا المستند وأعد فتحه أو أعد تحميله بعد اكتمال العملية لرؤية التغييرات. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + خطأ أثناء تنفيذ عملية حذف الصفحات No entries found. @@ -6534,7 +6864,7 @@ src/app/components/document-history/document-history.component.html 10 - لا توجد أيّ إدخالات. + لم يتم العثور على أيّ مدخلات. Select: @@ -6626,7 +6956,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 90 - Filter custom fields + تصفية الحقول المخصصة Merge @@ -6650,7 +6980,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 143 - ملفات مؤرشفة + الملفات المؤرشفة Original files @@ -6666,7 +6996,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 152 - استعمال اسم مُنسّق للملف + استخدام اسم الملف المنسق Error executing bulk operation @@ -6674,7 +7004,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 250 - خطأ في تنفيذ العملية بالجملة + خطأ أثناء تنفيذ العملية بالجملة "" @@ -6832,7 +7162,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 543 - Confirm custom field assignment + تأكيد تعيين الحقل المخصص This operation will assign the custom field "" to selected document(s). @@ -6840,7 +7170,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 549 - This operation will assign the custom field "" to selected document(s). + ستقوم هذه العملية بتعيين الحقل المخصص "" إلى المستند أو المستندات المحددة. This operation will assign the custom fields to selected document(s). @@ -6848,7 +7178,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 554,556 - This operation will assign the custom fields to selected document(s). + ستقوم هذه العملية بتعيين الحقول المخصصة {this._localizeList( changeCustomFields.itemsToAdd )} إلى مستند (مستندات) محدد. This operation will remove the custom field "" from selected document(s). @@ -6856,7 +7186,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 562 - This operation will remove the custom field "" from selected document(s). + ستؤدي هذه العملية إلى إزالة الحقل المخصص "" من مستند (مستندات) محدد. This operation will remove the custom fields from selected document(s). @@ -6864,7 +7194,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 567,569 - This operation will remove the custom fields from selected document(s). + ستؤدي هذه العملية إلى إزالة الحقول المخصصة {this._localizeList( changeCustomFields.itemsToRemove )} من مستند (مستندات) محدد. This operation will assign the custom fields and remove the custom fields on selected document(s). @@ -6872,53 +7202,53 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 571,575 - This operation will assign the custom fields and remove the custom fields on selected document(s). + ستقوم هذه العملية بتعيين الحقول المخصصة {this._localizeList( changeCustomFields.itemsToAdd )} وإزالة الحقول المخصصة {this._localizeList( changeCustomFields.itemsToRemove )} على مستند (مستندات) محدد. - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - تأكيد الحذف - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - هذه العملية ستحذف بشكل دائم المستند(المستندات) المختارة. + نقل المستند (المستندات) المحددة لسلة المهملات؟ - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - حذف المستند(المستندات) + ستؤدي هذه العملية إلى إعادة إنشاء ملفات الأرشيف بشكل دائم لمستند (مستندات) محدد . - - This operation will permanently redo OCR 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 - 752 + 756 - هذه العملية ستعيد بشكل دائم OCR لي المستند(المستندات) المختارة. + سيتم إعادة إنشاء ملفات الأرشيف بالإعدادات الحالية. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 - هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند (أو المستندات) بشكل دائم. + هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند أو المستندات بشكل دائم. + + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + سيؤدي هذا إلى تغيير النسخة الأصلية. Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 تأكيد الدمج @@ -6926,29 +7256,17 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 - هذه العملية ستؤدي إلى دمج المستندات المحددة في مستند جديد. + ستقوم هذه العملية بدمج المستند أو المستندات المحددة في مستند جديد. Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 - سيتم وضع المستند المدمج في قائمة انتظار الاستهلاك. - - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - تصفية حسب المراسل + سيتم وضع المستند المدمج في قائمة الانتظار للاستهلاك. Filter by tag @@ -6968,42 +7286,10 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - إظهار الملاحظات - - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - الملاحظات - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - تصفية حسب نوع المستند - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - تصفية حسب مسار التخزين + عرض الملاحظات - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - أنشئ: + تاريخ الإنشاء: Added: @@ -7068,7 +7354,7 @@ src/app/pipes/username.pipe.ts 33 - مشترك + تمت المشاركة Score: @@ -7216,7 +7502,7 @@ src/app/components/document-list/document-list.component.html 166 - الترتيب بحسب الإشاري ASN + الترتيب بحسب الرقم التسلسلي للأرشفة ASN @@ -7244,7 +7530,7 @@ src/app/components/document-list/document-list.component.html 175 - ترتيب حسب المرسل + ترتيب حسب جهة التراسل Sort by title @@ -7260,7 +7546,7 @@ src/app/components/document-list/document-list.component.html 196 - فرز حسب المالك + ترتيب حسب المالك Owner @@ -7276,7 +7562,7 @@ src/app/data/document.ts 96 - مالك + المالك Sort by notes @@ -7300,7 +7586,7 @@ src/app/components/document-list/document-list.component.html 223 - ترتيب حسب مكان الحفظ + ترتيب حسب مسار التخزين Sort by created date @@ -7364,7 +7650,7 @@ src/app/components/document-list/document-list.component.ts 226 - Reset filters / selection + إعادة تعيين المرشحات / التحديد Open first [selected] document @@ -7372,7 +7658,7 @@ src/app/components/document-list/document-list.component.ts 254 - Open first [selected] document + فتح أول مستند [محدد] View "" saved successfully. @@ -7460,7 +7746,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 191,193 - مراسل: + جهة التراسل: Without correspondent @@ -7508,7 +7794,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 219,220 - علامة: + الوسم: Without any tag @@ -7524,7 +7810,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 228,230 - Custom fields: + الحقول المخصصة: {this.customFields.find( (f) => f.id == +rule.value)؟. الاسم} Without any custom field @@ -7532,7 +7818,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 234 - Without any custom field + بدون أي حقل مخصص Title: @@ -7604,7 +7890,7 @@ src/app/components/document-notes/document-notes.component.html 5 - ادخل الملاحظة + أدخل ملاحظة Please enter a note. @@ -7648,7 +7934,7 @@ src/app/components/document-notes/document-notes.component.ts 80 - خطأ في حذف الملاحظة + خطأ أثناء حذف الملاحظة Drop files to begin upload @@ -7670,23 +7956,23 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 - جهة التراسل + جهة تراسل correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 - جهات التراسل + جهات تراسل Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 آخر استخدام @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 هل تريد حقاً حذف جهة التراسل" @@ -7744,7 +8030,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 72 - هذه العملية ستؤدي إلى حذف هذا الحقل بشكل دائم. + ستؤدي هذه العملية إلى حذف هذا الحقل نهائيا. Deleted field @@ -7752,7 +8038,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 81 - حقل محذوف + الحقل المحذوف Error deleting field. @@ -7760,7 +8046,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 86 - حدث خطأ أثناء حذف الحقل. + خطأ أثناء حذف الحقل. document type @@ -7792,7 +8078,7 @@ src/app/components/manage/mail/mail.component.html 2 - اعدادت البريد الالكترونى + إعدادات البريد Mail accounts @@ -7912,7 +8198,7 @@ src/app/components/manage/mail/mail.component.ts 132 - خطأ في حذف حساب البريد. + خطأ أثناء حذف حساب البريد. Saved rule "". @@ -7960,7 +8246,7 @@ src/app/components/manage/mail/mail.component.ts 190 - خطأ في حذف قاعدة البريد الإلكتروني. + خطأ أثناء حذف قاعدة البريد الإلكتروني. Permissions updated @@ -7968,7 +8254,7 @@ src/app/components/manage/mail/mail.component.ts 212 - تم تحديث الأذونات + تم تحديث الصلاحيات Error updating permissions @@ -7980,7 +8266,7 @@ src/app/components/manage/management-list/management-list.component.ts 307 - حدث خطأ أثناء تحديث الأذونات + خطأ أثناء تحديث الصلاحيات Filter by: @@ -8112,7 +8398,7 @@ src/app/components/manage/management-list/management-list.component.ts 160 - أنشئ بنجاح. + تم إنشاء بنجاح. Error occurred while creating . @@ -8120,7 +8406,7 @@ src/app/components/manage/management-list/management-list.component.ts 165 - حدث خطأ في أثناء إنشاء . + حدث خطأ أثناء إنشاء . Successfully updated . @@ -8128,7 +8414,7 @@ src/app/components/manage/management-list/management-list.component.ts 180 - حدث بنجاح. + تم تحديث بنجاح. Error occurred while saving . @@ -8136,7 +8422,7 @@ src/app/components/manage/management-list/management-list.component.ts 185 - حدث خطأ خلال الحفظ . + حدث خطأ أثناء حفظ . Associated documents will not be deleted. @@ -8152,7 +8438,7 @@ src/app/components/manage/management-list/management-list.component.ts 221 - حدث خطأ أثناء حذف العنصر + خطأ أثناء حذف العنصر Permissions updated successfully @@ -8160,7 +8446,7 @@ src/app/components/manage/management-list/management-list.component.ts 300 - تم تحديث الأذونات بنجاح + تم تحديث الصلاحيات بنجاح This operation will permanently delete all objects. @@ -8168,7 +8454,7 @@ src/app/components/manage/management-list/management-list.component.ts 321 - هذه العملية ستؤدي إلى حذف كل الكيانات objects بشكل دائم. + ستؤدي هذه العملية إلى حذف جميع الكائنات نهائيا. Objects deleted successfully @@ -8184,7 +8470,7 @@ src/app/components/manage/management-list/management-list.component.ts 341 - حدث خطأ أثناء حذف الكائنات + خطأ أثناء حذف الكائنات storage path @@ -8224,7 +8510,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 37 - علامات + الوسوم Do you really want to delete the tag ""? @@ -8240,7 +8526,7 @@ src/app/components/manage/workflows/workflows.component.html 4 - استعمل سير العمل Wf لتخصيص سلوك الـ Paperless-ngx عقب وقوع أحداث 'تقدح trigger' إطلاق سير العمل. + استخدم مهام سير العمل لتخصيص سلوك Paperless-ngx عندما "تشغل" الأحداث سير عمل. Add Workflow @@ -8248,7 +8534,7 @@ src/app/components/manage/workflows/workflows.component.html 9 - إضافة سير عمل Wf + إضافة سير عمل Disabled @@ -8264,7 +8550,7 @@ src/app/components/manage/workflows/workflows.component.html 46 - لم يتم تعريف أي سير عمل Wf. + لم يتم تعريف سير عمل. Saved workflow "". @@ -8272,7 +8558,7 @@ src/app/components/manage/workflows/workflows.component.ts 79 - تمّ حفظ سير العمل "". + سير العمل المحفوظ "". Error saving workflow. @@ -8280,7 +8566,7 @@ src/app/components/manage/workflows/workflows.component.ts 87 - حدث خطأ أثناء حفظ سير العمل Wf. + خطأ في أثناء حفظ سير العمل. Confirm delete workflow @@ -8296,7 +8582,7 @@ src/app/components/manage/workflows/workflows.component.ts 96 - هذه العملية ستؤدي إلى حذف سير العمل بشكل نهائي. + ستؤدي هذه العملية إلى حذف سير العمل هذا نهائيا. Deleted workflow @@ -8304,7 +8590,7 @@ src/app/components/manage/workflows/workflows.component.ts 105 - تمّ حذف سير العمل + سير العمل المحذوف Error deleting workflow. @@ -8312,7 +8598,7 @@ src/app/components/manage/workflows/workflows.component.ts 110 - حدث خطأ أثناء حذف سير العمل. + خطأ في أثناء حذف سير العمل. Not Found @@ -8328,7 +8614,7 @@ src/app/components/not-found/not-found.component.html 9 - اذهب إلى لوحة التحكم + اذهب إلى لوحة المعلومات Boolean @@ -8336,7 +8622,7 @@ src/app/data/custom-field.ts 17 - منطقي + بولياني Date @@ -8344,7 +8630,7 @@ src/app/data/custom-field.ts 21 - تاريخ + التاريخ Integer @@ -8368,7 +8654,7 @@ src/app/data/custom-field.ts 33 - نقدي + العملة Text @@ -8376,7 +8662,7 @@ src/app/data/custom-field.ts 37 - نص + النص Url @@ -8384,7 +8670,7 @@ src/app/data/custom-field.ts 41 - رابط + الرابط Document Link @@ -8457,7 +8743,7 @@ src/app/data/matching-model.ts 30 - تطابق تام + المطابقة التامة Exact: Document contains this string @@ -8465,7 +8751,7 @@ src/app/data/matching-model.ts 31 - بالضبط: المستند يحتوي على هذه الكلمة + بالضبط: يحتوي المستند على هذه السلسلة الحرفية Regular expression @@ -8473,7 +8759,7 @@ src/app/data/matching-model.ts 35 - التعابير النظامية + التعبير النمطي (RegEx) Regular expression: Document matches this regular expression @@ -8481,7 +8767,7 @@ src/app/data/matching-model.ts 36 - التعابير النظامية: المستند يطابق هذا التعبير النظامي + التعبير النمطي: المستند ينطبق على هذا التعبير النمطي Fuzzy word @@ -8489,7 +8775,7 @@ src/app/data/matching-model.ts 40 - كلمة غامضة + كلمة ضبابية Fuzzy: Document contains a word similar to this word @@ -8497,7 +8783,7 @@ src/app/data/matching-model.ts 41 - غامض: المستند يحوي كلمة مشابهة لهذه الكلمة + ضبابي: يحتوي المستند على كلمة مشابهة لهذه الكلمة None: Disable matching @@ -8521,7 +8807,7 @@ src/app/data/paperless-config.ts 51 - إعدادات التحويل لحروف OCR + إعدادات التمييز البصري للمحارف (OCR) Output Type @@ -8561,7 +8847,7 @@ src/app/data/paperless-config.ts 105 - تخطي ملف الأرشيف + تخطي الملف المؤرشف (المضغوط) Image DPI @@ -8569,7 +8855,7 @@ src/app/data/paperless-config.ts 113 - دقة الصورة بـ DPI + دقة الصورة بالـ DPI Clean @@ -8577,7 +8863,7 @@ src/app/data/paperless-config.ts 120 - تنظيف + مسح Deskew @@ -8585,7 +8871,7 @@ src/app/data/paperless-config.ts 128 - تعديل الميل + إزالة العيوب والانحرافات Rotate Pages @@ -8609,7 +8895,7 @@ src/app/data/paperless-config.ts 149 - أقصى عدد من النقاط Pixels في الصورة + الحد الأقصى لوحدات بكسل الصورة Color Conversion Strategy @@ -8617,7 +8903,7 @@ src/app/data/paperless-config.ts 156 - استراتيجية تحويل الألوان + استراتيجية تحويل اللون OCR Arguments @@ -8625,7 +8911,7 @@ src/app/data/paperless-config.ts 164 - بارامترات OCR + معلمات التمييز البصري للمحارف (OCR) Application Logo @@ -8649,7 +8935,7 @@ src/app/guards/dirty-doc.guard.ts 16 - تحذير: لديك تغييرات غير محفوظة للمستند(المستندات). + تحذير: لديك تغييرات غير محفوظة للمستند أو المستندات. Unsaved Changes @@ -8669,7 +8955,7 @@ src/app/services/open-documents.service.ts 135 - لم تحفظ تغييرات + التغييرات غير المحفوظة You have unsaved changes. @@ -8681,7 +8967,7 @@ src/app/services/open-documents.service.ts 136 - لديك تغييرات لم تحفظ. + لديك تغييرات غير محفوظة. Are you sure you want to leave? @@ -8689,7 +8975,7 @@ src/app/guards/dirty-form.guard.ts 19 - متيقِّن من المغادرة؟ + هل أنت متأكد من أنك تريد المغادرة؟ Leave page @@ -8697,7 +8983,7 @@ src/app/guards/dirty-form.guard.ts 21 - غادر الصفحة + مغادرة الصفحة You have unsaved changes to the saved view @@ -8713,7 +8999,7 @@ src/app/guards/dirty-saved-view.guard.ts 35 - متيقِّن من إغلاق هذا العرض المحفوظ؟ + هل أنت متأكد من أنك تريد إغلاق طريقة العرض المحفوظة هذه؟ Save and close @@ -8721,7 +9007,7 @@ src/app/guards/dirty-saved-view.guard.ts 39 - حفظ و إغلاق + حفظ وإغلاق You don't have permissions to do that @@ -8729,7 +9015,7 @@ src/app/guards/permissions.guard.ts 36 - لا تملك صلاحيّات تنفيذ ذلك + لا تملك صلاحيّات لتنفيذ ذلك %s year ago @@ -8833,7 +9119,7 @@ src/app/pipes/custom-date.pipe.ts 72 - الآن + في هذه اللحظة (no title) @@ -8857,7 +9143,7 @@ src/app/services/consumer-status.service.ts 18 - المستند و الرقم الإشاري موجودان مسبقاً. + المستند والرقم التسلسلي للأرشفة موجودان مسبقاً. File not found. @@ -8874,7 +9160,7 @@ 20 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. @@ -8883,7 +9169,7 @@ 21 Pre-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. @@ -8892,7 +9178,7 @@ 22 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. @@ -8901,7 +9187,7 @@ 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - حدث خطأ في أثناء تنفيذ البرنامَج النصي بعد-الاستهلاك. + خطأ في أثناء تنفيذ البرنامَج النصي (السكربت) بعد مرحلة الاستهلاك. Received new file. @@ -8973,7 +9259,7 @@ src/app/services/open-documents.service.ts 114 - هل أنت متيقِّن من إغلاق هذا المستند؟ + هل أنت متأكد من أنك تريد إغلاق هذا المستند؟ Are you sure you want to close all documents? @@ -8981,7 +9267,7 @@ src/app/services/open-documents.service.ts 137 - هل أنت متيقِّن من إغلاق كافة المستندات؟ + هل أنت متأكد من أنك تريد إغلاق جميع المستندات؟ Close documents diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 56c2f0c26..7baa322f2 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Немагчыма дадаць : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prev @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Наступная @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 End @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Прыборную панэль можна выкарыстоўваць для паказу захаваных праглядаў, такіх як "Уваходныя". Гэтыя налады знаходзяцца ў Наладах > Захаваныя прагляды пасля таго, як вы іх стварылі. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 Спіс дакументаў паказвае ўсе вашы дакументы і дазваляе фільтраваць, а таксама масава рэдагаваць. Ёсць тры розныя стылі прагляду: спіс, маленькія карты і вялікія карты. Спіс дакументаў, адкрытых для рэдагавання, паказаны на бакавой панэлі. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Інструменты фільтрацыі дазваляюць хутка знаходзіць дакументы па розных пошуках, датах, тэгах і г.д. @@ -457,7 +469,7 @@ 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 - 191 + 193 Любую камбінацыю фільтраў можна захаваць у выглядзе 'прагляда', які потым можа адлюстроўвацца на прыборнай панэлі і/або бакавой панэлі. @@ -465,7 +477,7 @@ 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 - 196 + 198 З дапамогай гэтых старонак можна кіраваць тэгамі, карэспандэнтамі, тыпамі дакументаў і шляхамі захоўвання. Іх таксама можна стварыць з прагляду рэдагавання дакумента. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Дзякуй! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Ёсць <em>тоны</em> дадатковыя магчымасці і інфармацыя, якую мы тут не разглядалі, але гэта дапаможа вам пачаць. Праверце дакументацыю або наведайце праект на GitHub, каб даведацца больш або паведаміць аб праблемах. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Адхіліць @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Паказаць дыялогавыя акно пацверджання - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Пры выдаленні дакументаў заўсёды будзе запытвацца пацверджанне. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Пашыраны пошук Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Апавяшчэнні @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Апрацоўка дакумента @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Паказваць апавяшчэнні пры выяўленні новых дакументаў @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Паказваць апавяшчэнні, калі апрацоўка дакумента завершана паспяхова @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Паказваць апавяшчэнні, калі апрацоўка дакумента няўдалая @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Схаваць апавяшчэння на галоўнай панэлі @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Гэта адключыць усе паведамленні аб статуце апрацоўкі дакументаў на галоўнай панэлі. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Па змаўчанні @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Няма захаваных праглядаў. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Захаваны выгляд "" выдалены. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Налады былі паспяхова захаваны. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Налады былі паспяхова захаваны. Каб прымяніць некаторыя змены, патрабуецца перазагрузка. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перазагрузіць зараз @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Пацвердзіце выдаленне + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Гэтую аперацыю нельга адмяніць. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Гэтую аперацыю нельга адмяніць. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Дакументацыя @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Карэспандэнты @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 даступна. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Націсніце, каб убачыць. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Як гэта працуе? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Даступна абнаўленне @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Пашыраны пошук + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Пацвердзіць + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Старонка + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Старонка - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Дадаць тэг + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Паказаць усё + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Фільтр па карэспандэнту + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Фільтраваць па тыпе дакумента + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Фільтраваць па шляху захавання + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Спампаваць арыгінал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Паўтарыць OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Папярэдняя @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Падрабязнасці @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Парадкавы нумар архіва @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата стварэння @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Змест @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата змянення @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата дадання @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Імя медыяфайла @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Арыгінальная назва файла @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Арыгінальная кантрольная сума MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Арыгінальны памер файла @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Арыгінальны MIME тып @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 сума архіва @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Памер файла архіва @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Арыгінальныя метададзеныя дакумента @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метададзеныя архіўнага дакумента @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Захаваць & наступны @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Увядзіце пароль @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Пацвердзіце выдаленне + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Вы сапраўды хочаце выдаліць дакумент ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Файлы для гэтага дакумента будуць выдалены назаўсёды. Гэтую аперацыю нельга адмяніць. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Выдаліць дакумент + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Паўтарыць пацверджанне OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Гэтая аперацыя назаўсёды паўторыць OCR для гэтага дакумента. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Пацвердзіце выдаленне - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Гэтая аперацыя назаўжды выдаліць абраных дакументаў. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Выдаліць дакумент(ы) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Гэта аперацыя назаўсёды паўторыць OCR для выбраных дакументаў. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Фільтр па карэспандэнту - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Фільтраваць па тыпе дакумента - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Фільтраваць па шляху захавання - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Створана: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 карэспандэнт @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 карэспандэнты @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Апошняе выкарыстанне @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Вы сапраўды хочаце выдаліць карэспандэнта ""? diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 11a548fee..9ce6b5ab4 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Документ беше добавен към Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Не може да се добави : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Документ се обработва от Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Назад @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Напред @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Край @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Таблото за управление може да се използва за показване на запазени изгледи, например „Входяща кутия“. Тези настройки се намират в Настройки > Запазени Изгледи, след като сте ги създали. @@ -433,7 +445,7 @@ 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 - 173 + 175 Завлечете и пуснете документите тук, за да започнете качването, или ги поставете в папката за консумация. Също така можете да влачите и пускате документи навсякъде във всички други страници на уеб приложението. След като го направите, Paperless-ngx ще започне да обучава своите алгоритми за машинно обучение. @@ -441,7 +453,7 @@ 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 - 178 + 180 Списъкът с документи показва всички ваши документи и позволява филтриране, както и групово редактиране. Има три различни стила за изглед: списък, малки карти и големи карти. В страничната лента се показва списък с документи, отворени в момента за редактиране. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Инструментите за филтриране позволяват бързо да намирате документи, като използвате различни търсения, дати, етикети и др. @@ -457,7 +469,7 @@ 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 - 191 + 193 Всяка комбинация от филтри може да бъде запазена като „изглед“, който след това може да се покаже на таблото за управление и/или страничната лента. @@ -465,7 +477,7 @@ 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 - 196 + 198 Етикетите, кореспондентите, типовете документи и пътищата за съхранение могат да се управляват с помощта на тези страници. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Работните процеси ви дават повече контрол върху конвейера на документи. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Вижте настройките на уеб приложението и превключете настройките за запазени изгледи. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Благодаря! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Има <em>много</em> повече функции и информация, които не сме разгледали тук, но това трябва да ви помогне да започнете. Вижте документацията или посетете проекта в GitHub, за да научите повече или да съобщите за проблеми. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 И накрая, от името на всеки участник в този проект, поддържан от общността, благодарим Ви, че използвате Paperless-ngx! @@ -549,36 +561,6 @@ Глобални опции за конфигурация на приложението, които се прилагат за <strong>всеки</strong> потребител на тази инсталация на софтуера. Опциите също могат да бъдат зададени с помощта на променливи на средата или конфигурационния файл, но стойността тук винаги ще има предимство. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Откажи @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Показване на диалогови прозорци за потвърждение - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Изтриването на документи винаги ще иска потвърждение. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Подробно търсене Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Включване на бележки @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Права по подразбиране @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Настройките се прилагат към този потребителски профил за обекти (етикети, правила за поща и т.н.), създадени чрез уеб интерфейса @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Собственик по подразбиране @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Права за преглед по подразбиране @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Права за промяна по подразбиране @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Известия @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обработване на документ @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показване на известия, когато са засечени нови документи @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показване на известия, когато обработката на документ приключи успешно @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показване на известия, когато обработката на документ се провали @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Потискане на известията в таблото за управление @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Това ще потисне всички съобщения за състоянието на обработка на документи в таблото за управление. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показване на предупреждение при затваряне на запазени изгледи с незапазени промени @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 По подразбиране @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Няма запазени дефинирани изгледи. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Запазен изглед "" е изтрит. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Настройките са запазени успешно. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Настройките са запазени успешно. Нужно е презареждане, за да влязат в сила. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Презареждане веднага @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Възникна грешка при запазване на настройките в сървъра. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ неуспял + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Потвърдете изтриването + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Това действие не може да бъде отменено. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Тази операция ще изтрие завинаги този потребителски профил. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Това действие не може да бъде отменено. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Документация @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Кореспонденти @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Типове документи @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Пътища за съхранение @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 е налично. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Натисни за преглед. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx може автоматично да проверява за актуализации @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Как работи това? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Налична актуализация @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Подробно търсене + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Потвърди + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Страница + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Страница - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Филтриране на документи с + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Отваряне на връзка + No documents found @@ -4977,6 +5223,14 @@ Добавяне на етикет + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Филтриране на документи с тези етикети - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Отваряне на връзка - What's this? @@ -5665,6 +5911,54 @@ Покажи всички + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Филтриране по кореспондент + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Филтриране по тип на документ + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Филтриране по път за съхранение + View Preview @@ -5729,11 +6023,19 @@ Общо знаци + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Други @@ -5888,8 +6190,8 @@ Изтегляне на оригинала - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторно OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Предишно @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Подробности @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Сериен номер на архива @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата на създаване @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Съдържание @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата на промяна @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата на добавяне @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Име на медиен файл @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Оригинално име на файла @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригинална контролна сума MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Оригинален размер на файла @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригинален mime тип @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Архивна контролна сума MD5 @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Размер на архива @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Оригинални метаданни на документ @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Архивирани метаданни на документа @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Преглед @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Запази & следващото @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Запази & затвори @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Въведете парола @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Възникна грешка при зареждане на съдържание: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Установени промени в документа @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 Версията на този документ в сесията на вашия браузър изглежда по-стара от съществуващата версия. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Записването на документа тук може да презапише други направени промени. За да възстановите съществуващата версия, отхвърлете промените или затворете документа. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ок @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Грешка при извличане на метаданни @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Грешка при извличане на предложения. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Документа е запазен успешно. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Грешка при запазване на документа - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Потвърдете изтриването + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Наистина ли искате да изтриете документа ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Файловете за този документ ще бъдат изтрити завинаги. Тази операция не може да бъде отменена. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Изтриване на документ + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Грешка при изтриване на документа - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Потвърдете Повтаряне OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Тази операция ще повтори за постоянно OCR за този документ. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Операцията Повтаряне OCR ще започне във фонов режим. Затворете и отворете отново или презаредете този документ, след като операцията приключи, за да видите новото съдържание. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Грешка при изпълнение на операцията @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Побиране на страницата @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Потвърждение за изтриване - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Тази операция ще изтрие завинаги " избраните документ(и). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Изтриване на документ(и) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Тази операция ще повтори OCR перманентно за " избраните документ(и). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Филтриране по кореспондент - Filter by tag @@ -6970,40 +7288,8 @@ Преглед на бележка - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Бележки - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Филтриране по тип на документ - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Филтриране по път за съхранение - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Създаден: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 кореспондент @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 кореспонденти @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Последно използан @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Наистина ли искате да изтриете кореспондента ""? diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 6d73c0de0..ce9f0d8ec 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document afegit a perless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 No es pot afegir : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document processant a Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prev @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Següent @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Fi @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 El tauler es pot utilitzar per mostrar vistes desades, com ara una "Safata d'entrada". Aquesta configuració es troba a Configuració > Visualitzacions desades un cop hagis creat algunes. @@ -433,7 +445,7 @@ 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 - 173 + 175 Arrossega i deixa anar documents aquí per començar a penjar-los o col·locar-los a la carpeta de consum. També podeu arrossegar i deixar anar documents a qualsevol lloc de la resta de pàgines de l'aplicació web. Un cop ho feu, Paperless-ngx començarà a entrenar els seus algorismes d'aprenentatge automàtic. @@ -441,7 +453,7 @@ 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 - 178 + 180 La llista de documents mostra tots els vostres documents i permet el filtratge i l'edició massiva. Hi ha tres estils de vista diferents: llista, targetes petites i targetes grans. A la barra lateral es mostra una llista dels documents oberts actualment per editar-los. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Les eines de filtratge permeten trobar ràpidament documents mitjançant diverses cerques, dates, etiquetes, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Qualsevol combinació de filtres es pot desar com a "vista" que després es pot mostrar al tauler i/o a la barra lateral. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etiquetes, corresponsals, tipus de documents i les rutes d'emmagatzematge es poden gestionar mitjançant aquestes pàgines. També es poden crear des de la vista d'edició del document. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Els Workflows us ofereixen més control sobre la canalització de documents. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Consulteu la configuració de diversos ajustaments a l'aplicació web i canvieu la configuració per a les visualitzacions desades. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Gràcies! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Hi ha <em>tones</em> més funcions i informació que no hem cobert aquí, però això us hauria d'ajudar a començar. Consulteu la documentació o visiteu el projecte a GitHub per obtenir més informació o per informar de problemes. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx! @@ -549,36 +561,6 @@ Opcions de configuració global d'aplicació que aplica a <strong>cada</strong> usuari d'aquesta instal·lació de Paperless-ngx. Les opcions també es poden establir mitjançant variables d'entorn o el fitxer de configuració, però el valor aquí sempre tindrà prioritat. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Descarta @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Mostra diàlegs de confirmació - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Esborrat de documents sempre demanarà confirmació. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Cerca global - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Cerca només a la BBDD (no incloure resultats de cerques avançades) + No incloure cerques avançades + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Enllaços de cerca complets a + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Cerca de títols i continguts + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Cerca avançada Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilita notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permisos per defecte @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 S'apliquen a aquest compte d'usuari per als objectes (etiquetes, regles de correu, etc.) creats mitjançant la interfície d'usuari web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propietari per defecte @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permisos per defecte de visionat @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Edita permisos per defecte @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificacions @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processant document @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Mostra notificacions quan es detectin documents nous @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Mostra notificacions quan es processin documents correctament @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Mostra notificacions quan falli el processament de document @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suprimeix les notificacions del tauler @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Això suprimirà tots els missatges sobre l'estat del processament de documents al tauler. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Mostra avís en tancar visualitzacions desades amb canvis no desats @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Mida de pàgina del document @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Mostra com @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Taula @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Tarja Petita @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Tarja Gran @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Per defecte @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Sense vistes definides. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vista Guardada "" esborrada. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Configuració guardada amb èxit. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 La configuració desada correctament. Cal tornar a carregar per aplicar alguns canvis. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarrega ara @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error desant opcions al servidor. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ Ha fallat + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + Brossa + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + Veure documents pendents d'esborrar. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + Restaura la selecció + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + Suprimeix selecció + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + Buida la paperera + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + Restant + + + days + + src/app/components/admin/trash/trash.component.html + 58 + + dies + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restaurar + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, one {}=1 {Un document a la brossa} other { total documents a la brossa}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirma eliminació + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + Això esborrarà permanentment el document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Aquesta acció no es pot desfer. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document eliminat + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + L'operació esborrarà els documents seleccionats. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 77 + + L'operació esborrarà tots els documents de la brossa. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) eliminat(s) + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restaurat + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restaurat(s) + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Això esborrarà definitivament aquest compte d'usuari. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Aquesta acció no es pot desfer. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentació @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Corresponsals @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipus Documents @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Ruta emmagatzematge @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 està disponible. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Cliqueu per veure. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx pot cercar actualitzacions automàticament @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Com funciona? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Actualització disponible @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Cerca - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Cerca avançada + Cerca Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Obrir @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filtra Documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Cap resultat @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Vistes guardades @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Etiquetes @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Corresponsals @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Tipus document @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Rutes emmagatzematge @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Usuaris @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Grups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Camps personalitzats @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Comptes de correu @@ -3055,15 +3241,15 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 - Normes e-mail + Normes correu Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Fluxos @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Objecte actualitzat correctament. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error desant objecte. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirma + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Pàgina + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + de + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pàgines a esborrar + Documents: @@ -3187,11 +3425,19 @@ Regenerar totes les metadades + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Esborrar document original després d'un fusionat correcte + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 Tingues en compte que només els PDFs seràn inclosos. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Tingues en compte que només els PDFs seràn girats. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Pàgina - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - de - Add Split @@ -3239,6 +3457,14 @@ Afegeix Divisió + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Esborrar document original després d'una divisió correcte + View @@ -4313,7 +4539,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 122 - Disparadors per documents coincidents amb all filters specified below. + Disparadors per documents coincidents amb all filtres especificats a continuació. Filter filename @@ -4868,6 +5094,26 @@ Filtra documents amb aquest + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Eliminar enllaç + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Obre enllaç + No documents found @@ -4977,6 +5223,14 @@ Afegir etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Treure etiqueta + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtra documents amb aquestes etiquetes - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Obre enllaç - What's this? @@ -5665,6 +5911,54 @@ Mostra tot + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtra per corresponsal + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtra per tipus de documents + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtra per ruta emmagatzematge + View Preview @@ -5729,11 +6023,19 @@ Caràcters Totals + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + ASN Actual + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Altres @@ -5888,8 +6190,8 @@ Baixa original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Refés OCR + Reprocesa More like this @@ -5932,15 +6234,23 @@ Rota + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Esborrar pàgina(es) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalls @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de sèrie de l'arxiu @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data de creació @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contingut @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modificació @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data afegit @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nom Arxiu @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nom arxiu original @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Mida arxiu original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipus mímic original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 checksum arxivat @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Mida arxiu arxivat @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadades del document original @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadades del document arxivat @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vista prèvia @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historial @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Desa & següent @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Desa & tanca @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introdueix Contrasenya @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Error carregant contingut: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Canvis detectats al document @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 La versió d'aquest document a la sessió del vostre navegador sembla més antiga que la versió existent. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Desar el document aquí pot sobreescriure altres canvis fets. Per restaurar la versió existent, descarta els canvis o tanca el document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Següent document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Document Anterior @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Desar Document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error recuperant metadada @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error recuperant suggerències. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document guardat correctament. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error guardant document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirma eliminació + Realment vols moure el document "" a la brossa? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Realment vols esborrar el document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Els documents es poden restaurar abans de l'esborrat definitiu. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Els fitxers d'aquest document se suprimiran permanentment. Aquesta operació no es pot desfer. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Esborra document + Mou a la brossa Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error esborrant document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Refer OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Aquesta operació tornarà a fer l'OCR per a aquest document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - L'operació de refer OCR començarà en segon pla. Tanqueu i torneu a obrir o recarregueu aquest document un cop finalitzada l'operació per veure contingut nou. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Confirma Reprocès + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + Aquesta operació recrearà l'arxivat per aquest document. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + Els arxius arxivats seran regenerats amb les opcions actuals. + + + Reprocess operation 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 + 831 + + L'operació de reprocès començarà en segon pla. Tanca i reobre o recarrega el document després que loperació hagi completat per veure el nou contingut. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Error executant operació @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Encaix Pàgina @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Confirma divisió @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Aquesta operació dividirà els documents seleccionats en documents nous. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 L'operació de divisió començarà en segon pla. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executant operació de divisió @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Confirma rotació @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Aquesta operació girarà permanentment la versió original del document actual. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Això alterarà la còpia original. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 La rotació començarà en segon pla. Tanqueu i torneu a obrir el document un cop finalitzada l'operació per veure els canvis. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executant operació de rotació + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Confirma esborrat + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + Aquesta operació suprimirà permanentment les pàgines seleccionades del document original. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + L'operació de supressió de pàgines començarà en segon pla. Tanqueu i torneu a obrir o recarregueu aquest document un cop finalitzada l'operació per veure els canvis. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error en executar l'operació d'eliminació de pàgines + No entries found. @@ -6874,51 +7204,51 @@ L'operació assignarà els camps personalitzats i esborrarà els camps personalitzats de document(s) seleccionat(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirma esborrat - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - L'operació esborrarà document(s) seleccionats. + Moure documents(s) seleccionat(s) a la brossa? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Esborra document(s) + Aquesta operació recrearà els arxius arxiats per al(s) document(s) seleccionat(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Aquesta operació tornarà a fer l'OCR per document(s) seleccionats. + Els arxius arxivats seran regenerats amb les opcions actuals. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Aquesta operació girarà permanentment la versió original de document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Això alterarà la còpia original. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Confirma combinació @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Aquesta operació combinarà documents seleccionats en un document nou. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 El document combinat es posarà en cua per al seu consum. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtra per corresponsal - Filter by tag @@ -6970,40 +7288,8 @@ Veure notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtra per tipus de documents - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtra per ruta emmagatzematge - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creat: + Creat: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corresponsal @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corresponsals @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Últim usat @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Esborrar corresponsal ""? @@ -7808,7 +8094,7 @@ src/app/components/manage/mail/mail.component.html 14 - Afergir compte + Afegir compte Server @@ -7832,7 +8118,7 @@ src/app/components/manage/mail/mail.component.html 56 - Normes e-mail + Normes correu Add Rule diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 297659cc7..c93eec639 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument byl přidán do Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nepodařilo se přidat : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Předchozí @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Další @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Konec @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Děkujeme! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Zrušit @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Zobrazit potvrzovací dialogy - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Smazání dokumentů bude vždy vyžadovat potvrzení. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Pokročilé vyhledávání Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Povolit poznámky @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Oznámení @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Zpracovávání dokumentu @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Zobrazit oznámení, když jsou zjištěny nové dokumenty @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Zobrazit oznámení při úspěšném dokončení zpracování dokumentu @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Zobrazit oznámení, když zpracování dokumentu selže @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Potlačit oznámení na nástěnce @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Toto potlačí všechny zprávy o stavu zpracování dokumentu na nástěnce. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nejsou definovány žádné uložené pohledy. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Uložený pohled "" odstraněn. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Potvrdit smazání + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Tuto operaci nelze vrátit zpět. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Tuto operaci nelze vrátit zpět. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentace @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korespondenti @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Typy dokumentů @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Cesty úložiště @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 je k dispozici. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klikni pro zobrazení. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx umí automaticky kontrolovat aktualizace @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Jak to funguje? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 K dispozici je aktualizace @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Pokročilé vyhledávání + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potvrdit + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Strana + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Strana - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Přidat štítek + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Zobrazit vše + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrovat podle korespondenta + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Celkem znaků + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Stáhnout originál - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Předchozí @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Sériové číslo archivu @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Vytvořeno @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Obsah @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Upraveno @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Přidána @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Název souboru @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Původní kontrolní součet MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Původní velikost souboru @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Původní typ mime @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Kontrolní součet MD5 archivu @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Velikost souboru archivu @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadata původního dokumentu @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadata archivovaného dokumentu @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Poznámky @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Uložit a další @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Potvrdit smazání + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Opravdu chcete smazat dokument ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Soubory tohoto dokumentu budou trvale smazány. Tuto operaci nelze vrátit zpět. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Smazat dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Potvrdit odstranění - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Tato operace trvale odstraní vybraných dokumentů. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Smazat dokument(y) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrovat podle korespondenta - Filter by tag @@ -6970,40 +7288,8 @@ Zobrazit poznámky - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - poznámek - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Vytvořeno: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespondenti @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Naposledy použito @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Opravdu chcete smazat korespondenta ""? diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 9e26bee54..f11cab2e5 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Kunne ikke tilføje : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Forrige @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Næste @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 End @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Kontrolpanelet kan bruges til at vise gemte visninger, såsom en 'Indbakke'. Disse indstillinger findes under indstillinger > Gemte visninger, når du har oprettet nogle. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Mange tak! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Forkast @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Vis bekræftelsesdialoger - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Sletning af dokumenter vil altid anmode om bekræftelse. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Avanceret søgning Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikationer @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentbehandling @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Vis notifikationer når nye dokumenter registreres @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Vis notifikationer når dokumentbehandling er fuldført @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Vis notifikationer når dokumentbehandling fejler @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Undertryk notifikationer på betjeningspanelet @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Dette vil undertrykke alle meddelelser om dokumentbehandlingsstatus på betjeningspanelet. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ingen gemte visninger. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gemt visning "" slettet. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Bekræft sletning + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Denne handling kan ikke fortrydes. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Denne handling kan ikke fortrydes. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentation @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondenter @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 er tilgængelig. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klik for at se. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 How does this work? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Opdatering tilgængelig @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Avanceret søgning + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bekræft + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Side + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Side - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Tilføj etiket + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Vis alle + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrer efter korrespondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Forrige @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkiv serienummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Oprettelsesdato @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Indhold @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Ændringsdato @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Tilføjelsesdato @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Filnavn for medie @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 kontrolsum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original filstørrelse @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mimetype @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiv MD5 kontrolsum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkiv filstørrelse @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original dokumentmetadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkiveret dokumentmetadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Gem & næste @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Indtast adgangskode @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Bekræft sletning + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Er du sikker på, at du vil slette dokument ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Filerne for dette dokument vil blive slettet permanent. Denne handling kan ikke fortrydes. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Slet dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Bekræft sletning - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Denne handling vil permanent slette valgte dokument(er). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Slet dokument(er) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrer efter korrespondent - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Oprettet: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Er du sikker på, at du vil slette korrespondenten ""? diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 03fb2692f..d72fcdaae 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument wurde zu Paperless-ngx hinzugefügt. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Konnte nicht hinzufügen: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokument wird von Paperless-ngx verarbeitet. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Zurück @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Weiter @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Ende @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem „Posteingang“. Diese Option finden Sie unter Einstellungen > Gespeicherte Ansichten, sobald Sie mindestens eine eigene Ansicht erstellt haben. @@ -433,7 +445,7 @@ 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 - 173 + 175 Ziehen Sie Dokumente hier hinein, um mit dem Hochladen zu beginnen oder kopieren Sie Dateien in den Importordner („consume“). Sie können auch Dokumente per drag-and-drop auf alle anderen Seiten der Anwendung ziehen. Wenn Sie dies tun, beginnt Paperless-ngx seine Algorithmen für maschinelles Lernen zu trainieren. @@ -441,7 +453,7 @@ 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 - 178 + 180 Die Dokumentenliste zeigt alle Ihre Dokumente an und ermöglicht das Filtern sowie die Massenbearbeitung von mehreren Dokumenten. Es gibt drei verschiedene Ansichtsstile: Liste, kleine Karten und große Karten. In der Seitenleiste werden aktuell geöffnete Dokumente aufgelistet. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Mit den Filterwerkzeugen können Sie schnell Dokumente finden, die verschiedene Datumsbereiche, Tags und andere Suchbegriffe enthalten. @@ -457,7 +469,7 @@ 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 - 191 + 193 Jede Kombination von Filterkriterien kann als „Ansicht“ gespeichert werden, die dann auf der Startseite und/oder der Seitenleiste angezeigt werden können. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, Korrespondenten, Dokumententypen und Speicherpfade können über diese Seiten verwaltet werden. Sie können auch beim Bearbeiten von Dokumenten erstellt werden. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Arbeitsabläufe geben Ihnen mehr Kontrolle über die Dokumentenverarbeitung. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Überprüfen Sie die Einstellungen für diverse Verbesserung der Webanwendung und ändern Sie die Einstellungen für gespeicherte Ansichten. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Vielen Dank! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Es gibt noch <em>erheblich</em> mehr Funktionen und Informationen, die mit der Tour nicht abgedeckt wurden. Nach der Tour sollten Sie jedoch direkt loslegen können. Schauen Sie sich die Dokumentation an oder besuchen Sie das Projekt auf GitHub, um mehr zu erfahren oder Probleme zu melden. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx verwenden! @@ -547,37 +559,7 @@ src/app/components/admin/config/config.component.html 4 - Globale Anwendungskonfigurationsoptionen, welche für <strong>jeden</strong> Benutzer dieser Paperless-ngx-Instanz gelten. Optionen können auch mithilfe von Umgebungsvariablen oder der Konfigurationsdatei gesetzt werden, jedoch haben die Werte hier immer Vorrang. - - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - + Globale Anwendungskonfigurationsoptionen, welche für <strong>jeden</strong> Benutzer dieser Paperless-ngx-Instanz gelten. Optionen können auch mithilfe von Umgebungsvariablen oder der Konfigurationsdatei gesetzt werden, jedoch haben die Werte auf dieser Seite immer Vorrang. Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Verwerfen @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Bestätigungsdialoge anzeigen - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Beim Löschen von Dokumenten wird immer nach einer Bestätigung gefragt. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Globale Suche - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Nur Datenbank durchsuchen (ohne erweiterte Suchergebnisse) + Erweiterte Suchergebnisse nicht miteinbeziehen + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Vollständige Suche führt zu + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Titel- und Inhaltssuche + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Erweiterte Suche Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notizen aktivieren @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standardberechtigungen @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Einstellungen gelten für dieses Benutzerkonto für Objekte (Tags, E-Mail-Regeln, etc.), die über die Weboberfläche erstellt wurden @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standardeigentümer @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standard-Anzeigeberechtigungen @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standard-Bearbeitungsberechtigungen @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Benachrichtigungen @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentverarbeitung @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Benachrichtigungen anzeigen, wenn neue Dokumente erkannt werden @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Benachrichtigungen anzeigen, wenn die Dokumentenverarbeitung erfolgreich abgeschlossen wurde @@ -1399,15 +1409,15 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 - Benachrichtigungen anzeigen, wenn die Verarbeitung des Dokuments fehlschlägt + Benachrichtigungen anzeigen, wenn die Dokumentenverarbeitung fehlgeschlagen ist Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Unterdrücke Benachrichtigungen auf der Startseite @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Dadurch werden alle Benachrichtigungen über die Dokumentenverarbeitung auf der Startseite unterdrückt. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Warnung anzeigen, wenn gespeicherte Ansichten mit ungespeicherten Änderungen geschlossen werden @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Dokumente pro Seite @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Anzeigen als @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabelle @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Kleine Karten @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Große Karten @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Standard @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Keine gespeicherten Ansichten vorhanden. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gespeicherte Ansicht „“ gelöscht. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Einstellungen wurden erfolgreich gespeichert. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Einstellungen wurden erfolgreich gespeichert. Es ist erforderlich, die Seite neu zu laden, um einige Änderungen zu übernehmen. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Jetzt neu laden @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Fehler beim Speichern der Einstellungen auf dem Server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ fehlgeschlagen + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + Papierkorb + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + Dokumente im Papierkorb verwalten, die noch nicht gelöscht wurden. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + Ausgewählte wiederherstellen + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + Ausgewählte löschen + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + Papierkorb leeren + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + Verbleibend + + + days + + src/app/components/admin/trash/trash.component.html + 58 + + Tage + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Wiederherstellen + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {Ein Dokument im Papierkorb} other {Insgesamt Dokumente im Papierkorb}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Löschen bestätigen + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + Dieser Vorgang wird dieses Dokument unwiderruflich löschen. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Dieser Vorgang kann nicht rückgängig gemacht werden. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Dokument gelöscht + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + Dieser Vorgang wird die ausgewählten Dokumente unwiderruflich löschen. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 77 + + Dieser Vorgang wird alle Dokumente im Papierkorb unwiderruflich löschen. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Dokument(e) gelöscht + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Dokument wiederhergestellt + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Dokument(e) wiederhergestellt + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2429,51 +2663,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 115 - Diese Aktion wird dieses Benutzerkonto dauerhaft löschen. - - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Diese Aktion kann nicht rückgängig gemacht werden. + Dieser Vorgang wird dieses Benutzerkonto unwiderruflich löschen. Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2577,7 +2771,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 165 - Diese Aktion wird diese Benutzergruppe dauerhaft löschen. + Dieser Vorgang wird diese Benutzergruppe unwiderruflich löschen. Deleted group @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentation @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondenten @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Dokumenttypen @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Speicherpfade @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 ist verfügbar. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Zum Anzeigen klicken. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx kann automatisch auf Aktualisierungen überprüfen @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Wie funktioniert das? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Aktualisierung verfügbar @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Suchen - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Erweiterte Suche + Suchen Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Öffnen @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Dokumente filtern @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Keine Ergebnisse @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Dokumente @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Gespeicherte Ansichten @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Korrespondenten @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Dokumenttypen @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Speicherpfade @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Benutzer @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Gruppen @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Benutzerdefinierte Felder @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 E-Mail-Konten @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 E-Mail-Regeln @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Arbeitsabläufe @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Objekte erfolgreich aktualisiert. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Fehler beim Speichern des Objekts. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bestätigen + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Seite + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + von + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Zu entfernende Seiten + Documents: @@ -3187,11 +3425,19 @@ Metadaten neu generieren + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Originaldokumente nach erfolgreicher Zusammenführung löschen + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 Beachten Sie, dass nur PDFs miteinbezogen werden. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Beachten Sie, dass nur PDFs rotiert werden. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Seite - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - von - Add Split @@ -3239,6 +3457,14 @@ Teilung hinzufügen + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Originaldokument nach erfolgreicher Teilung löschen + View @@ -4529,7 +4755,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - Korrenspondenten entfernen + Korrespondenten entfernen Remove document types @@ -4768,13 +4994,13 @@ Filter drop down element to filter for documents with no correspondent/type/tag assigned Nicht zugewiesen - + Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 452 - Filter öffnen + Filter öffnen Keyboard shortcuts @@ -4868,6 +5094,26 @@ Dokumente mit diesem filtern + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Verknüpfung entfernen + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Link öffnen + No documents found @@ -4977,6 +5223,14 @@ Tag hinzufügen + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Tag entfernen + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Dokumente mit diesen Tags filtern - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Link öffnen - What's this? @@ -5665,6 +5911,54 @@ Alle anzeigen + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Nach Korrespondent filtern + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Nach Dokumenttyp filtern + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Nach Speicherpfad filtern + View Preview @@ -5729,11 +6023,19 @@ Zeichen insgesamt + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Aktuelle ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Sonstige @@ -5888,8 +6190,8 @@ Original herunterladen - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR wiederholen + Erneut verarbeiten More like this @@ -5932,15 +6234,23 @@ Rotieren + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Seite(n) löschen + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorheriges @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archiv-Seriennummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Ausstellungsdatum @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhalt @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Geändert am @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Hinzugefügt am @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media-Dateiname @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Ursprünglicher Dateiname @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5-Prüfsumme Original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dateigröße Original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 MIME-Typ Original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-Prüfsumme Archiv @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Dateigröße Archiv @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadaten Original @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadaten Archiv @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vorschau @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notizen @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Verlauf @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Speichern & weiter @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Speichern & schließen @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Kennwort eingeben @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Fehler beim Laden des Inhalts: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Dokumentänderungen erkannt @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 Die Dokumentenversion in der Browsersession erschein älter als die existierende Version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Beim Speichern des Dokuments könnten andere Änderungen überschrieben werden. Um die existierende Version wiederherzustellen, verwerfen Sie Ihre Änderungen oder schließen Sie das Dokument. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Nächstes Dokument @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Vorheriges Dokument @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Dokument speichern @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fehler beim Abrufen der Metadaten @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fehler beim Abrufen der Vorschläge. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument erfolgreich gespeichert. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Fehler beim Speichern des Dokuments - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Löschen bestätigen + Möchten Sie das Dokument „“ wirklich in den Papierkorb verschieben? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Möchten Sie das Dokument „“ wirklich löschen? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Dokumente können wiederhergestellt werden, bevor sie unwiderruflich gelöscht werden. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Dokument löschen + In den Papierkorb verschieben Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Fehler beim Löschen des Dokuments - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - OCR-Wiederholung bestätigen - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Diese Aktion wird die Texterkennung für dieses Dokument wiederholen und dauerhaft überschreiben. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - OCR-Vorgang wird im Hintergrund neu gestartet. Schließen und öffnen Sie dieses Dokument nach Abschluss der Operation erneut, oder laden Sie es neu, um neue Inhalte anzuzeigen. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Erneut verarbeiten bestätigen + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + Die Archivdatei wird mit den aktuellen Einstellungen neu generiert. + + + Reprocess operation 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 + 831 + + Die erneute Verarbeitung wird im Hintergrund gestartet. Schließen und öffnen Sie dieses Dokument nach Abschluss des Vorgangs erneut oder laden Sie es neu, um neue Inhalte anzuzeigen. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Fehler beim Ausführen der Aktion @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Seite einpassen @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Teilung bestätigen @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Dieser Vorgang wird ausgewählte Dokumente in neue Dokumente aufteilen. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Teilungsvorgang wird im Hintergrund gestartet. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Fehler beim Ausführen des Teilungsvorgangs @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotieren bestätigen @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 - Dieser Vorgang wird die Originalversion des aktuellen Dokuments permanent rotieren. - - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Dies wird die Originaldatei verändern. + Dieser Vorgang wird die Originalversion des aktuellen Dokuments unwiderruflich rotieren. Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Der Rotationsvorgang wird im Hintergrund gestartet. Schließen und öffnen Sie das Dokument nach Abschluss des Vorgangs erneut, um die Änderungen zu sehen. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Fehler beim Ausführen des Rotationsvorgangs + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Seiten löschen bestätigen + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + Dieser Vorgang wird die ausgewählten Seiten unwiderruflich aus dem Originaldokument löschen. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Der Vorgang „Seiten löschen“ wird im Hintergrund ausgeführt. Schließen und öffnen Sie dieses Dokument nach Abschluss der Operation erneut oder laden Sie es neu, um neue Inhalte anzuzeigen. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Fehler beim Ausführen des Vorgangs „Seiten löschen“ + No entries found. @@ -6720,7 +7050,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 371 - Diese Aktion wird ausgewählten Dokumenten das Tag „“ hinzufügen. + Dieser Vorgang wird ausgewählten Dokumenten das Tag „“ hinzufügen. This operation will add the tags to selected document(s). @@ -6728,7 +7058,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 376,378 - Diese Aktion wird die Tags zu ausgewählten Dokumenten hinzufügen. + Dieser Vorgang wird die Tags zu ausgewählten Dokumenten hinzufügen. This operation will remove the tag "" from selected document(s). @@ -6736,7 +7066,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 384 - Diese Aktion wird das Tag „“ von ausgewählten Dokumenten entfernen. + Dieser Vorgang wird das Tag „“ von ausgewählten Dokumenten entfernen. This operation will remove the tags from selected document(s). @@ -6744,7 +7074,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 389,391 - Diese Aktion wird die Tags von ausgewählten Dokumenten entfernen. + Dieser Vorgang wird die Tags von ausgewählten Dokumenten entfernen. This operation will add the tags and remove the tags on selected document(s). @@ -6752,7 +7082,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 393,397 - Diese Aktion wird ausgewählten Dokumenten die Tags hinzufügen und die Tags entfernen. + Diesr Vorgang wird ausgewählten Dokumenten die Tags hinzufügen und die Tags entfernen. Confirm correspondent assignment @@ -6768,7 +7098,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 436 - Diese Aktion wird ausgewählten Dokumenten den Korrespondenten „“ zuweisen. + Dieser Vorgang wird ausgewählten Dokumenten den Korrespondenten „“ zuweisen. This operation will remove the correspondent from selected document(s). @@ -6776,7 +7106,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 438 - Diese Aktion wird bei ausgewählten Dokumenten den Korrespondent entfernen. + Dieser Vorgang wird bei ausgewählten Dokumenten den Korrespondent entfernen. Confirm document type assignment @@ -6792,7 +7122,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 474 - Diese Aktion wird ausgewählten Dokumenten den Dokumenttyp „“ zuweisen. + Dieser Vorgang wird ausgewählten Dokumenten den Dokumenttyp „“ zuweisen. This operation will remove the document type from selected document(s). @@ -6800,7 +7130,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 476 - Diese Aktion wird den Dokumenttyp von ausgewählten Dokumenten entfernen. + Dieser Vorgang wird den Dokumenttyp von ausgewählten Dokumenten entfernen. Confirm storage path assignment @@ -6816,7 +7146,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 512 - Diese Aktion wird ausgewählten Dokumenten den Speicherpfad „“ zuweisen. + Dieser Vorgang wird ausgewählten Dokumenten den Speicherpfad „“ zuweisen. This operation will remove the storage path from selected document(s). @@ -6824,7 +7154,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 514 - Diese Aktion wird den Speicherpfad von ausgewählten Dokumenten entfernen. + Dieser Vorgang wird den Speicherpfad von ausgewählten Dokumenten entfernen. Confirm custom field assignment @@ -6874,51 +7204,51 @@ Dieser Vorgang wird ausgewählten Dokumenten die benutzerdefinierten Felder zuweisen und die benutzerdefinierten Felder entfernen. - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Löschen bestätigen - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Diese Aktion wird ausgewählte(s) Dokument(e) unwiderruflich löschen. + ausgewählte Dokumente in den Papierkorb verschieben? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Dokument(e) löschen + Dieser Vorgang wird die Archivdateien von ausgewählten Dokumenten unwiderruflich neu erstellen. - - This operation will permanently redo OCR 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 - 752 + 756 - Diese Aktion wird die Texterkennung für ausgewählte(s) Dokument(e) wiederholen und dauerhaft überschreiben. + Die Archivdateien werden wird mit den aktuellen Einstellungen neu generiert. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Dieser Vorgang wird die Originalversion von Dokument(en) permanent rotieren. + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Dies wird die Originaldatei verändern. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Zusammenführen bestätigen @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Dieser Vorgang wird ausgewählte Dokumente zu einem neuen Dokument zusammenführen. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Das zusammengeführte Dokument wird zur Verarbeitung in die Warteschlange eingereiht. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Nach Korrespondent filtern - Filter by tag @@ -6970,40 +7288,8 @@ Notizen anzeigen - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notizen - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Nach Dokumenttyp filtern - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Nach Speicherpfad filtern - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Erstellt: + Ausgestellt: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 Korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 Korrespondenten @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Zuletzt benutzt @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Möchten Sie den Korrespondenten „“ wirklich löschen? @@ -7744,7 +8030,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 72 - Diese Aktion wird dieses Feld dauerhaft löschen. + Dieser Vorgang wird dieses Feld unwiderruflich löschen. Deleted field @@ -7896,7 +8182,7 @@ src/app/components/manage/mail/mail.component.ts 113 - Diese Aktion wird dieses E-Mail-Konto dauerhaft löschen. + Dieser Vorgang wird dieses E-Mail-Konto unwiderruflich löschen. Deleted mail account @@ -7944,7 +8230,7 @@ src/app/components/manage/mail/mail.component.ts 172 - Diese Aktion wird diese E-Mail-Regel dauerhaft löschen. + Dieser Vorgang wird diese E-Mail-Regel unwiderruflich löschen. Deleted mail rule @@ -8168,7 +8454,7 @@ src/app/components/manage/management-list/management-list.component.ts 321 - Dieser Vorgang wird alle Objekte permanent löschen. + Dieser Vorgang wird alle Objekte unwiderruflich löschen. Objects deleted successfully @@ -8296,7 +8582,7 @@ src/app/components/manage/workflows/workflows.component.ts 96 - Dieser Vorgang wird diesen Arbeitsablauf dauerhaft löschen. + Dieser Vorgang wird diesen Arbeitsablauf unwiderruflich löschen. Deleted workflow diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index d35b9cf3a..6641a0f14 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Το έγγραφο προστέθηκε στο Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Δεν ήταν δυνατή η προσθήκη του : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Το έγγραφο επεξεργάζεται από το Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Προηγ. @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Επόμενο @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Τέλος @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Το ταμπλό μπορεί να χρησιμοποιηθεί για την εμφάνιση αποθηκευμένων προβολών, όπως τα 'Εισερχόμενα'. Αυτές οι ρυθμίσεις βρίσκονται στις Ρυθμίσεις > Αποθηκευμένες Προβολές μόλις δημιουργήσετε μερικές. @@ -433,7 +445,7 @@ 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 - 173 + 175 Σύρετε και αποθέστε έγγραφα εδώ για να ξεκινήσει το ανέβασμα ή τοποθετήστε τα στο φάκελο κατανάλωσης. Μπορείτε επίσης να σύρετε και να αποθέσετε έγγραφα οπουδήποτε σε όλες τις άλλες σελίδες της εφαρμογής. Μόλις το κάνετε, το Paperless-ngx θα ξεκινήσει την εκπαίδευση αλγορίθμων μηχανικής μάθησης του. @@ -441,7 +453,7 @@ 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 - 178 + 180 Η λίστα εγγράφων εμφανίζει όλα τα έγγραφά σας και επιτρέπει φιλτράρισμα καθώς και μαζική επεξεργασία. Υπάρχουν τρία διαφορετικά στυλ προβολής: λίστα, μικρές κάρτες και μεγάλες κάρτες. Μια λίστα με τα έγγραφα που έχουν ανοιχτεί για επεξεργασία εμφανίζεται στην πλαϊνή μπάρα. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Τα εργαλεία φιλτραρίσματος σας επιτρέπουν να βρείτε γρήγορα έγγραφα χρησιμοποιώντας διάφορες αναζητήσεις, ημερομηνίες, ετικέτες, κλπ. @@ -457,7 +469,7 @@ 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 - 191 + 193 Οποιοσδήποτε συνδυασμός φίλτρων μπορεί να αποθηκευτεί ως 'προβολή' που μπορεί στη συνέχεια να εμφανιστεί στο ταμπλό ή / και στην πλαϊνή γραμμή. @@ -465,7 +477,7 @@ 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 - 196 + 198 Οι ετικέτες, οι ανταποκριτές, οι τύποι εγγράφων και οι διαδρομές αποθήκευσης μπορούν να διαχειριστούν όλες χρησιμοποιώντας αυτές τις σελίδες. Μπορούν επίσης να δημιουργηθούν από την προβολή επεξεργασίας εγγράφου. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Ευχαριστούμε! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Υπάρχουν <em>πολλές</em> περισσότερες δυνατότητες και πληροφορίες που δεν καλύψαμε εδώ, αλλά αυτό θα πρέπει να είναι αρκετό για να ξεκινήσετε. Ελέγξτε την τεκμηρίωση ή επισκεφθείτε το έργο στο GitHub για να μάθετε περισσότερα ή να αναφέρετε ζητήματα. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Τέλος, εκ μέρους κάθε συνεισφέροντος σε αυτό το έργο που υποστηρίζεται από την κοινότητα, σας ευχαριστούμε που χρησιμοποιείτε το Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Απόρριψη @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Εμφάνιση διαλόγων επιβεβαίωσης - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Η διαγραφή εγγράφων θα ζητά πάντα επιβεβαίωση. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Σύνθετη αναζήτηση Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ενεργοποίηση σημειώσεων @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Ειδοποιήσεις @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Επεξεργασία εγγράφων @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Εμφάνιση ειδοποιήσεων όταν εντοπίζονται νέα έγγραφα @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Εμφάνιση ειδοποιήσεων όταν η επεξεργασία εγγράφου ολοκληρώνεται με επιτυχία @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Εμφάνιση ειδοποιήσεων όταν η επεξεργασία του εγγράφου αποτυγχάνει @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Καταστολή ειδοποιήσεων στο ταμπλό @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Αυτό θα καταστείλει όλα τα μηνύματα σχετικά με την κατάσταση επεξεργασίας εγγράφων στο ταμπλό. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Εμφάνιση προειδοποίησης κατά το κλείσιμο αποθηκευμένων προβολών με μη αποθηκευμένες αλλαγές @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Προεπιλογή @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Δεν έχουν οριστεί αποθηκευμένες προβολές. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Η αποθηκευμένη προβολή "" διαγράφηκε. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Οι ρυθμίσεις αποθηκεύτηκαν με επιτυχία. Απαιτείται επαναφόρτωση για να εφαρμοστούν κάποιες αλλαγές. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Επαναφόρτωση τώρα @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Σφάλμα κατά την αποθήκευση των ρυθμίσεων στο διακομιστή. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ απέτυχε + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Επιβεβαίωση διαγραφής + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Αυτή η λειτουργία θα διαγράψει μόνιμα αυτόν τον λογαριασμό χρήστη. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Τεκμηρίωση @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Ανταποκριτές @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Τύποι Εγγράφων @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Διαδρομές Αποθήκευσης @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 είναι διαθέσιμο. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Κάνε κλικ για προβολή. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Πώς λειτουργεί; @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Υπάρχει διαθέσιμη ενημέρωση @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Σύνθετη αναζήτηση + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Επιβεβαίωση + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Σελίδα + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Σελίδα - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Φιλτράρισμα εγγράφων με + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Προσθήκη ετικέτας + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Φιλτράρισμα εγγράφων με αυτές τις ετικέτες - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Προβολή όλων + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Φιλτράρισμα ανά ανταποκριτή + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Φιλτράρισμα ανά τύπο εγγράφου + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Φιλτράρισμα ανά διαδρομή αποθήκευσης + View Preview @@ -5729,11 +6023,19 @@ Συνολικοί χαρακτήρες + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Άλλο @@ -5888,8 +6190,8 @@ Λήψη πρωτότυπου - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Επανάληψη OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Προηγούμενο @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Λεπτομέρειες @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Αρχειοθέτηση σειριακού αριθμού @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Ημερομηνία δημιουργίας @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Περιεχόμενο @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Ημερομηνία τροποποίησης @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Ημερομηνία προσθήκης @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Όνομα αρχείου πολυμέσων @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Πρωτότυπο όνομα αρχείου @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Αρχικό checksum MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Αρχικό μέγεθος αρχείου @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Αρχικός τύπος mime @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Αρχειοθέτηση MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Μέγεθος αρχείου αρχειοθέτησης @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Πρωτότυπα μεταδεδομένα εγγράφου @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Αρχειοθετημένα μεταδεδομένα εγγράφου @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Προεπισκόπηση @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Αποθήκευση & επόμενο @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Αποθήκευση & κλείσιμο @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Εισαγωγή Κωδικού Πρόσβασης @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Οκ @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Σφάλμα ανάκτησης μεταδεδομένων @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Σφάλμα στην ανάκτηση προτάσεων. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Το έγγραφο αποθηκεύτηκε επιτυχώς. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Σφάλμα αποθήκευσης του εγγράφου - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Επιβεβαίωση διαγραφής + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Θέλετε πραγματικά να διαγράψετε το έγγραφο ""; + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Τα αρχεία αυτού του εγγράφου θα διαγραφούν οριστικά. Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Διαγραφή εγγράφου + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Σφάλμα διαγραφής εγγράφου - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Επιβεβαίωση επανάληψης OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Αυτή η λειτουργία θα ξανακάνει οριστικά OCR για αυτό το έγγραφο. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Η λειτουργία επανάληψης OCR θα ξεκινήσει στο παρασκήνιο. Κλείστε και ανοίξτε εκ νέου ή επαναφορτώστε αυτό το έγγραφο μετά την ολοκλήρωση της λειτουργίας για να δείτε νέο περιεχόμενο. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Σφάλμα εκτέλεσης λειτουργίας @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Επιβεβαίωση διαγραφής - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Αυτή η λειτουργία θα διαγράψει μόνιμα το επιλεγμένο(α) έγγραφο(α). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Διαγραφή εγγράφου(ων) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Αυτή η λειτουργία θα ξανακάνει οριστικά OCR για τα επιλεγμένο(α) έγγραφο(α). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Φιλτράρισμα ανά ανταποκριτή - Filter by tag @@ -6970,40 +7288,8 @@ Προβολή σημειώσεων - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Σημειώσεις - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Φιλτράρισμα ανά τύπο εγγράφου - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Φιλτράρισμα ανά διαδρομή αποθήκευσης - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Δημιουργήθηκε: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ανταποκριτής @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ανταποκριτές @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Τελευταία χρήση @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Θέλετε πραγματικά να διαγράψετε τον ανταποκριτή ""; diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index e1a297874..a645a5c76 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Documento agregado a Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 No se pudo añadir: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 El documento está siendo procesado por Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Anterior @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Siguiente @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Fin @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 El panel de control se puede utilizar para mostrar las vistas guardadas, como una 'Bandeja de entrada'. Estos ajustes se encuentran en Ajustes > Visualizaciones guardadas una vez que haya creado algunas. @@ -433,7 +445,7 @@ 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 - 173 + 175 Arrastra y suelta los documentos aquí para subirlos o colócalos en la carpeta de consumo. También puedes arrastrar y soltar los documentos en cualquier lugar de las demás páginas de la aplicación web. Una vez lo hagas, Paperless-ngx comenzará a entrenar los algoritmos de machine learning. @@ -441,7 +453,7 @@ 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 - 178 + 180 La lista de documentos muestra todos sus documentos y permite filtrar y editar en masa. Hay disponibles tres estilos de vista diferentes: lista, tarjetas pequeñas y tarjetas grandes. Una lista de documentos que se encuentran actualmente abiertos se muestra en la barra lateral. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Las herramientas de filtrado le permiten encontrar rápidamente documentos usando diferentes búsquedas, fechas, etiquetas, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Cualquier combinación de filtros puede ser guardada como una «vista» que puede ser luego mostrada en el panel de control y/o barra lateral. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etiquetas, interlocutores, tipos de documentos y rutas de almacenamiento se pueden administrar utilizando estas páginas. También se pueden crear desde la vista de edición de documentos. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Los flujos de trabajo le dan más control sobre el tubería del documento. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Echa un vistazo a la configuración para realizar varios ajustes en la aplicación web y cambiar la configuración de las vistas guardadas. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 ¡Gracias! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Aún hay <em>muchas</em> más características e información que no hemos cubierto aquí, pero esto debería servirle para comenzar. Consulte la documentación o visite el proyecto en GitHub para aprender más o reportar problemas. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx! @@ -549,36 +561,6 @@ Opciones globales de configuración de la aplicación que se aplican a <strong>cada usuario</strong> de esta instalación de Paperless-ngx. Las opciones también se pueden configurar usando variables de entorno o el archivo de configuración, pero el valor aquí siempre tendrá prioridad. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Descartar @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Mostrar diálogos de confirmación - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Borrar los documentos siempre pedirá confirmación. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Búsqueda avanzada Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilitar notas @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permisos por defecto @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 La configuración aplica a esta cuenta de usuario para objetos (Etiquetas, Reglas de correo, etc.) que hayan sido creados a través de la interfaz web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propietario por defecto @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permisos de visualización por defecto @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permisos de edición por defecto @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificaciones @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesado de documentos @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Mostrar notificaciones cuando nuevos documentos sean borrados @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Mostrar notificaciones cuando el procesado se complete satisfactoriamente @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Mostrar notificaciones cuando el procesado falle @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 No mostrar notificaciones en el panel de control @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Esto suprimirá todos los mensajes de estado de procesamiento en el panel de control. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Mostrar advertencia al cerrar vistas guardadas con cambios sin guardar @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Por defecto @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No hay ninguna vista guardada definida @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vista guardada "" borrada. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Los ajustes se han guardado correctamente. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Los ajustes se han guardado correctamente. Es necesario recargar para aplicar algunos cambios. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recargar ahora @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error al almacenar los ajustes en el servidor. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ fallidas + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirmar borrado + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Esta operación no se puede deshacer. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Esta operación eliminará permanentemente esta cuenta de usuario. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Esta operación no se puede deshacer. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentación @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Interlocutores @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipos de documentos @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Rutas de almacenamiento @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 está disponible. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Haz clic para ver. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx puede comprobar automáticamente si hay actualizaciones @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 ¿Cómo funciona? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Actualización disponible @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Búsqueda avanzada + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirmar + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Página + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Página - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtrar documentos con + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Abrir enlace + No documents found @@ -4977,6 +5223,14 @@ Añadir etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrar documentos con estas etiquetas - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Abrir enlace - What's this? @@ -5665,6 +5911,54 @@ Mostrar todos + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrar por interlocutor + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrar por tipo de documento + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrar por ruta de almacenamiento + View Preview @@ -5729,11 +6023,19 @@ Total de caracteres + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Otro @@ -5888,8 +6190,8 @@ Documento original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Rehacer OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalles @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de serie del archivo @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Fecha de creación @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenido @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Fecha de modificación @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Fecha de subida @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nombre del fichero @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nombre del archivo original @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Comprobación MD5 original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Tamaño del fichero original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo MIME original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Comprobación MD5 del archivo @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Tamaño del archivo @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadatos originales @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadatos archivados @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vista previa @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notas @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Guardar y continuar @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Guardar & cerrar @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introducir contraseña @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Se ha producido un error al cargar el contenido: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Cambios de documento detectados @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 La versión de este documento en la sesión de su navegador aparece más antigua que la versión existente. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Guardar el documento aquí puede sobrescribir otros cambios que se han hecho. Para restaurar la versión existente, descartar los cambios o cerrar el documento. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Aceptar @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error al recuperar los metadatos @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error al recuperar las sugerencias. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 El documento guardado correctamente. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error al guardar el documento - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirmar borrado + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - ¿Estás seguro de querer borrar el documento ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Borrar documento + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error al eliminar documento - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Rehacer confirmación de OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Esta operación rehará permanentemente el OCR de este documento. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - La operación de rehacer OCR comenzará en segundo plano. Cierra y vuelve a abrir o vuelve a cargar este documento después de que la operación se haya completado para ver el nuevo contenido. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error al ejecutar la operación @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Ajuste de página @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirmar borrado - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Esta operación borrará permanentemente documento(s) seleccionado(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Borrar documento(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Esta operación rehará permanentemente OCR para documento(s) seleccionados. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrar por interlocutor - Filter by tag @@ -6970,40 +7288,8 @@ Ver notas - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notas - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrar por tipo de documento - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrar por ruta de almacenamiento - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creado: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 interlocutor @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 interlocutores @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Usado por última vez @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 ¿Estás seguro de querer borrar el interlocutor ""? diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 6e707d1cd..2834eeaf7 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -273,19 +273,31 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 - Document was added to Paperless-ngx. + Asiakirja lisättiin Paperless-ngx:ään. Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Ei voitu lisätä : @@ -305,15 +317,15 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 - Document is being processed by Paperless-ngx. + Asiakirjaa käsitellään Paperless-ngx:n toimesta. Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -363,13 +375,13 @@ src/app/components/manage/management-list/management-list.component.html 90 - Dokumentit + Asiakirjat Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Edellinen @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Seuraava @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Loppu @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Koontinäyttöä voidaan käyttää näytettäessä tallennettuja näkymiä, kuten 'Saapuneet'. Nämä asetukset löytyvät Asetuksista > kohdasta Tallennetut näkymät. @@ -433,7 +445,7 @@ 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 - 173 + 175 Vedä ja pudota asiakirjoja tänne aloittaaksesi lataamisen tai siirrä ne noutohakemistoon. Voit myös pudottaa asiakirjoja missä tahansa muilla sivuilla. Kun teet niin, Paperless-ngx alkaa kouluttaa sen koneoppimisen algoritmeja. @@ -441,7 +453,7 @@ 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 - 178 + 180 Asiakirjaluettelo näyttää kaikki asiakirjat ja mahdollistaa suodattamisen ja massamuokkauksen. On olemassa kolme erilaista näkymää: luettelo, pienet kortit ja suuret kortit. Sivupalkissa näytetään luettelo tällä hetkellä avatuista asiakirjoista. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Suodatustyökalujen avulla voit löytää asiakirjoja nopeasti käyttämällä erilaisia hakuja, päivämääriä, tageja jne. @@ -457,7 +469,7 @@ 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 - 191 + 193 Mikä tahansa suodattimien yhdistelmä voidaan tallentaa 'näkymäksi', joka voidaan näyttää koontinäytöllä ja / tai sivupalkissa. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tunnisteita, yhteyshenkilöitä, asiakirjatyyppejä ja tallennuspolkuja voidaan hallita näillä sivuilla. Niitä voidaan myös luoda asiakirjan muokkausnäkymästä. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Kiitos! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 On <em>muitakin</em> ominaisuuksia ja tietoja, joita ei lue täällä, mutta näillä pääset alkuun. Tutustu dokumentaatioon tai vieraile GitHubissa oppiaksesi lisää tai raportoidaksesi ongelmista. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia! @@ -539,7 +551,7 @@ src/app/components/admin/config/config.component.html 2 - Application Configuration + Sovelluksen asetukset 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. @@ -549,43 +561,13 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting src/app/components/admin/config/config.component.html 25 - Read the documentation about this setting + Lue tätä asetusta koskeva dokumentaatio Enable @@ -593,7 +575,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + Käytä Discard @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Hylkää @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -685,7 +667,7 @@ src/app/components/admin/config/config.component.ts 107 - Invalid JSON + Virheellinen JSON Configuration updated @@ -693,7 +675,7 @@ src/app/components/admin/config/config.component.ts 151 - Configuration updated + Asetukset päivitetty An error occurred updating configuration @@ -709,7 +691,7 @@ src/app/components/admin/config/config.component.ts 178 - File successfully updated + Tiedosto päivitetty onnistuneesti An error occurred uploading file @@ -753,7 +735,7 @@ src/app/components/admin/tasks/tasks.component.html 16 - Auto refresh + Automaattinen päivitys Loading... @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -857,7 +843,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Järjestelmän tila Open Django Admin @@ -1073,7 +1059,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Asiakirjan muokkaus Automatically remove inbox tag(s) on save @@ -1099,14 +1085,6 @@ Näytä vahvistukset - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Asiakirjojen poistaminen pyytää aina vahvistusta. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - Global search + Yleishaku - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Älä sisällytä edistyneitä hakutuloksia + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Laajennettu haku Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ota muistiinpanot käyttöön @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Oletusoikeudet @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Oletusomistaja @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Oletusarvoiset katseluoikeudet @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Oletusarvoiset muokkausoikeudet @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Ilmoitukset @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Asiakirjan käsittely @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Näytä ilmoitukset kun uusia asiakirjoja havaitaan @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Näytä ilmoitukset, kun asiakirjan käsittely valmistuu onnistuneesti @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Näytä ilmoitukset kun asiakirjan käsittely epäonnistuu @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Älä näytä ilmoituksia koontinäytöllä @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Tämä estää koontinäytöllä kaikki viestit, jotka koskevat asiakirjojen käsittelyn tilaa. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Näytä varoitus suljettaessa tallennettuja näkymiä tallentamattomilla muutoksilla @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,39 +1709,39 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 - Small Cards + Pienet kortit Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 - Large Cards + Suuret kortit Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html 17 - Show + Näytä Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Oletusarvo @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Tallennettuja näkymiä ei ole määritelty. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Tallennettu näkymä "" poistettu. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Asetukset tallennettiin onnistuneesti. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Asetukset on tallennettu onnistuneesti. Uudelleenlataus vaaditaan joidenkin muutosten käyttöönottamiseksi. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Lataa uudelleen @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Virhe palvelimen asetuksia tallentaessa. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ epäonnistui + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Vahvista poisto + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Toimintoa ei voi peruuttaa. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2233,7 +2471,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + Luo, poista sekä muokkaa käyttäjiä ja ryhmiä. Users @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2385,7 +2619,7 @@ src/app/components/admin/users-groups/users-groups.component.html 84 - No groups defined + Ryhmiä ei ole määritelty Password has been changed, you will be logged out momentarily. @@ -2431,50 +2665,6 @@ Tämä toiminto poistaa pysyvästi tämän käyttäjätilin. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Toimintoa ei voi peruuttaa. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2617,7 +2811,7 @@ src/app/components/app-frame/app-frame.component.html 46 - My Profile + Oma profiili Logout @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentaatio @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Yhteyshenkilöt @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Asiakirjatyypit @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Tallennustilan polut @@ -2773,7 +2967,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 2 - Custom Fields + Mukautetut kentät Workflows @@ -2789,7 +2983,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + Työnkulut Mail @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 on saatavilla. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Näytä klikkaamalla. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx voi tarkistaa päivitykset automaattisesti @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Kuinka tämä toimii? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Päivitys saatavilla @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Laajennettu haku + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,15 +3117,15 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 - Filter documents + Suodata asiakirjoja Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,39 +3153,39 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 - No results + Ei tuloksia Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 - Documents + Asiakirjat Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 - Saved Views + Tallennetut näkymät Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 - Tags + Tunnisteet Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,15 +3193,15 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 - Document types + Asiakirjatyypit Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,59 +3209,59 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 - Users + Käyttäjät Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 - Groups + Ryhmät Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 - Custom fields + Mukautetut kentät Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 - Mail accounts + Sähköpostitilit Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 - Mail rules + Sähköpostisäännöt Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 - Workflows + Työnkulut Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3121,7 +3307,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + Oletko varma? Confirmation @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,50 +3351,18 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Vahvista - - 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 - - - Note that only PDFs will be included. - - src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 - - 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 - 35 - - Note that only PDFs will be rotated. - Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 11 @@ -3221,6 +3379,10 @@ of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 13 @@ -3229,7 +3391,63 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + / + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Poistettavat sivut + + + Documents: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 9 + + Asiakirjat: + + + 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 + + Luo kaikki metatiedot uudelleen + + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 + 34 + + 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. Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Poista alkuperäinen asiakirja onnistuneen jaon jälkeen + View @@ -3273,7 +3499,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 21 - Create new field + Luo uusi kenttä Saved field "". @@ -3285,7 +3511,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 56 - Saved field "". + Tallennettu kenttä "". Error saving field. @@ -3297,7 +3523,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 63 - Error saving field. + Virhe kenttää tallentaessa. now @@ -3473,7 +3699,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html 12 - Data type + Datatyyppi Data type cannot be changed after a field is created @@ -3481,7 +3707,7 @@ 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 + Datatyyppiä ei voi muuttaa, kun kenttä on luotu Create new custom field @@ -3489,7 +3715,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 36 - Create new custom field + Luo uusi mukautettu kenttä Edit custom field @@ -3497,7 +3723,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 40 - Edit custom field + Muokkaa mukautettua kenttää Create new document type @@ -3797,7 +4023,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Tuo vain dokumentit jotka täsmäävät täysin tiedostonimen suhteen. Jokerimerkit kuten *.pdf tai *lasku* ovat sallittuja. Kirjainkoko ei merkitse. + Tuo vain asiakirjat, jotka täsmäävät täysin tiedostonimeä. Jokerimerkit kuten *.pdf tai *lasku* ovat sallittuja. Kirjainkoko ei merkitse. Filter attachment filename excluding @@ -3885,7 +4111,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 42 - Assign owner from rule + Määritä omistaja säännöstä Error @@ -4253,7 +4479,7 @@ src/app/components/manage/workflows/workflows.component.html 30 - Enabled + Käytössä Triggers @@ -4321,7 +4547,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 125 - Filter filename + Suodata tiedostonimi Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -4337,7 +4563,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 127 - Filter sources + Suodata lähteet Filter path @@ -4345,7 +4571,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 128 - Filter path + Suodata polku Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -4361,7 +4587,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 129 - Filter mail rule + Suodata sähköpostisääntö Apply to documents consumed via this mail rule. @@ -4489,7 +4715,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - Remove tags + Poista tunnisteet Remove all @@ -4521,7 +4747,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - Remove all + Poista kaikki Remove correspondents @@ -4553,7 +4779,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 240 - Remove custom fields + Poista mukautetut kentät Remove owners @@ -4561,7 +4787,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 247 - Remove owners + Poista omistajat Remove permissions @@ -4569,7 +4795,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 253 - Remove permissions + Poista oikeudet View permissions @@ -4577,7 +4803,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 256 - View permissions + Näytä oikeudet Edit permissions @@ -4585,7 +4811,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 275 - Edit permissions + Muokkaa oikeuksia Consume Folder @@ -4625,7 +4851,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 58 - Document Added + Asiakirja lisätty Document Updated @@ -4633,7 +4859,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 62 - Document Updated + Asiakirja päivitetty Assignment @@ -4657,7 +4883,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 142 - Create new workflow + Luo uusi työnkulku Edit workflow @@ -4665,7 +4891,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 146 - Edit workflow + Muokkaa työnkulkua All @@ -4782,7 +5008,7 @@ src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts 20 - Keyboard shortcuts + Pikanäppäimet Remove @@ -4830,7 +5056,7 @@ src/app/components/common/input/url/url.component.html 7 - Remove + Poista Invalid date. @@ -4868,13 +5094,33 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Poista linkki + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Avaa linkki + No documents found src/app/components/common/input/document-link/document-link.component.ts 44 - No documents found + Asiakirjoja ei löytynyt Selected items @@ -4882,7 +5128,7 @@ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts 23 - Selected items + Valitut kohteet No items selected @@ -4890,7 +5136,7 @@ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts 29 - No items selected + Ei valittuja kohteita Upload @@ -4898,7 +5144,7 @@ src/app/components/common/input/file/file.component.html 15 - Upload + Lähetä Show password @@ -4906,7 +5152,7 @@ src/app/components/common/input/password/password.component.html 6 - Show password + Näytä salasana Edit Permissions @@ -4977,6 +5223,14 @@ Lisää tunniste + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Poista tunniste + Filter documents with these Tags @@ -4985,21 +5239,13 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? src/app/components/common/page-header/page-header.component.html 9 - What's this? + Mikä tämä on? Read more @@ -5007,7 +5253,7 @@ src/app/components/common/page-header/page-header.component.html 15 - Read more + Lisätietoja Merge with existing permissions @@ -5139,7 +5385,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 3 - Edit Profile + Muokkaa profiilia Confirm Email @@ -5147,7 +5393,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 13 - Confirm Email + Vahvista sähköposti Confirm Password @@ -5155,7 +5401,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 23 - Confirm Password + Vahvista salasana API Auth Token @@ -5219,7 +5465,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 59 - Connected social accounts + Yhdistetyt sosiaaliset tilit Set a password before disconnecting social account. @@ -5227,7 +5473,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 63 - Set a password before disconnecting social account. + Aseta salasana ennen sosiaalisen tilin yhteyden katkaisemista. Disconnect @@ -5235,7 +5481,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 69 - Disconnect + Katkaise yhteys Disconnect social account @@ -5259,7 +5505,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 86 - Connect new social account + Yhdistä uusi sosiaalinen tili Emails must match @@ -5267,7 +5513,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 108 - Emails must match + Sähköpostien on vastattava toisiaan Passwords must match @@ -5275,7 +5521,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 136 - Passwords must match + Salasanojen pitää täsmätä Profile updated successfully @@ -5283,7 +5529,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 156 - Profile updated successfully + Profiili päivitetty onnistuneesti Error saving profile @@ -5291,7 +5537,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 168 - Error saving profile + Virhe profiilia tallentaessa Error generating auth token @@ -5307,7 +5553,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 210 - Error disconnecting social account + Virhe yhteyttä sosiaaliseen tiliin katkaistaessa Select @@ -5375,7 +5621,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 51 - Expires + Vanhenee 1 day @@ -5451,7 +5697,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 18 - Environment + Ympäristö Paperless-ngx Version @@ -5459,7 +5705,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 22 - Paperless-ngx Version + Paperless-ngx:n versio Install Type @@ -5467,7 +5713,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 24 - Install Type + Asennustyyppi Server OS @@ -5475,7 +5721,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 26 - Server OS + Palvelimen käyttöjärjestelmä Media Storage @@ -5483,7 +5729,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 28 - Media Storage + Median tallennustila available @@ -5491,7 +5737,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - available + saatavilla total @@ -5499,7 +5745,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - total + yhteensä Database @@ -5507,7 +5753,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 41 - Database + Tietokanta Status @@ -5531,7 +5777,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 56 - Migration Status + Migraation tila Up to date @@ -5539,7 +5785,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 59 - Up to date + Ajan tasalla Latest Migration @@ -5547,7 +5793,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 64 - Latest Migration + Viimeisin migraatio Pending Migrations @@ -5555,7 +5801,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 66 - Pending Migrations + Odottavat migraatiot Tasks @@ -5563,7 +5809,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 83 - Tasks + Tehtävät Redis Status @@ -5571,7 +5817,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 87 - Redis Status + Redisin tila Celery Status @@ -5579,7 +5825,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 96 - Celery Status + Celeryn tila Search Index @@ -5587,7 +5833,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 105 - Search Index + Hakuindeksi Last Updated @@ -5595,7 +5841,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 119 - Last Updated + Viimeksi päivitetty Classifier @@ -5627,7 +5873,7 @@ src/app/components/dashboard/dashboard.component.ts 38 - Hello , welcome to + Hei , tämä on Welcome to @@ -5635,7 +5881,7 @@ src/app/components/dashboard/dashboard.component.ts 40 - Welcome to + Tervetuloa, tämä on Dashboard updated @@ -5665,6 +5911,54 @@ Näytä kaikki + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Suodata yhteyshenkilön mukaan + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Suodata asiakirjatyypin mukaan + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Suodata tallennuspolun mukaan + View Preview @@ -5729,11 +6023,19 @@ Merkkejä yhteensä + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Muu @@ -5838,7 +6140,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 4 - Tarkempia tietoja Paperless-ngx: käytöstä ja konfiguroinnista on saatavilla dokumentaatiossa. + Tarkempia tietoja Paperless-ngx:n käytöstä ja asetuksista on saatavilla dokumentaatiossa. Thanks for being a part of the Paperless-ngx community! @@ -5870,7 +6172,7 @@ src/app/components/document-detail/document-detail.component.html 11 - - + - + @@ -5878,7 +6180,7 @@ src/app/components/document-detail/document-detail.component.html 19 - + + + Download original @@ -5888,8 +6190,8 @@ Lataa alkuperäinen - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Tee OCR uudelleen + Käsittele uudelleen More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Edellinen @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Tarkemmat tiedot @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkistointisarjanumero @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Luontipäivä @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Sisältö @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Muokkauspäivämäärä @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Lisäyspäivämäärä @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Median tiedostonimi @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Alkuperäinen tiedoston nimi @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Alkuperäinen MD5-tarkistussumma @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Alkuperäinen tiedostokoko @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Alkuperäinen mime-tyyppi @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkistoidun MD5-tarkistussumma @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkistoidun tiedostokoko @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Alkuperäisen asiakirjan metatiedot @@ -6188,15 +6498,15 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 - Arkistoidun dokumentin metatiedot + Arkistoidun asiakirjan metatiedot Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Esikatsele @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,15 +6522,15 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 - History + Historia Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Tallenna & Lopeta @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Tallenna ja sulje @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Syötä salasana @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Sisällön lataamisessa tapahtui virhe: @@ -6252,23 +6562,23 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 - Document changes detected + Asiakirjan muutoksia havaittu The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 - The version of this document in your browser session appears older than the existing version. + Tämän asiakirjan versio selainistunnossasi vaikuttaa olevan vanhempi kuin olemassa oleva versio. 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,31 +6586,31 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 - Ok + OK Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 - Next document + Seuraava asiakirja Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 - Previous document + Edellinen asiakirja Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,15 +6622,15 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 - Save document + Tallenna asiakirja Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Virhe haettaessa metatietoja @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Virhe ehdotuksia noutaessa. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Asiakirja tallennettu onnistuneesti. @@ -6348,111 +6658,111 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Virhe tallennettaessa asiakirjaa - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Vahvista poisto + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Haluatko varmasti poistaa asiakirjan ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Tämän asiakirjan tiedostot poistetaan pysyvästi. Tätä toimintoa ei voi peruuttaa. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Poista asiakirja + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Virhe asiakirjaa poistaessa - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Vahvista OCR:n uudelleenteko - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Tämä toiminto suorittaa OCR:n uudelleen. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - OCR-toiminto alkaa taustalla. Sulje ja avaa uudelleen tämä asiakirja tai lataa se uudelleen, kun toiminto on suoritettu nähdäksesi uuden sisällön. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Uudelleenkäsittelyn vahvistus + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 - Error executing operation + Virhe toimintoa suoritettaessa Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 - Page Fit + Sivun sovitus Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Vahvista sivujen poisto + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6614,7 +6944,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 139 - Custom fields + Mukautetut kentät Filter custom fields @@ -6626,7 +6956,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 90 - Filter custom fields + Suodata mukautetut kentät Merge @@ -6634,7 +6964,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 117 - Merge + Yhdistä Include: @@ -6650,7 +6980,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 143 - Archived files + Arkistoidut tiedostot Original files @@ -6658,7 +6988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 147 - Original files + Alkuperäiset tiedostot Use formatted filename @@ -6666,7 +6996,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 152 - Use formatted filename + Käytä muotoiltua tiedostonimeä Error executing bulk operation @@ -6674,7 +7004,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 250 - Error executing bulk operation + Virhe massatoiminnon suorittamisessa "" @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Vahvista poisto - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Tämä toiminto poistaa pysyvästi "" valitun asiakirjan. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Poista asiakirja(t) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Tämä toiminto tekee pysyvästi uudelleen OCR-haun valitulle dokumentille. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Tämä muuttaa alkuperäistä kappaletta. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Suodata yhteyshenkilön mukaan - Filter by tag @@ -6970,40 +7288,8 @@ Näytä muistiinpanot - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Muistiinpanot - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Suodata asiakirjatyypin mukaan - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Suodata tallennuspolun mukaan - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Luotu: + Luotu: Added: @@ -7324,7 +7610,7 @@ src/app/components/document-list/document-list.component.html 248,250 - Shared + Jaettu Edit document @@ -7364,7 +7650,7 @@ src/app/components/document-list/document-list.component.ts 226 - Reset filters / selection + Nollaa suodattimet / valinta Open first [selected] document @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 yhteyshenkilö @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 yhteyshenkilöt @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Viimeksi käytetty @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Haluatko varmasti poistaa kirjeenvaihtajan ""? @@ -7712,7 +7998,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 9 - Add Field + Lisää kenttä Data Type @@ -7720,7 +8006,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 18 - Data Type + Datatyyppi No fields defined. @@ -7736,7 +8022,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 71 - Confirm delete field + Vahvista kentän poisto This operation will permanently delete this field. @@ -7744,7 +8030,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 72 - This operation will permanently delete this field. + Tämä toiminto poistaa tämän kentän pysyvästi. Deleted field @@ -7752,7 +8038,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 81 - Deleted field + Kenttä poistettu Error deleting field. @@ -7760,7 +8046,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 86 - Error deleting field. + Virhe poistaessa kenttää. document type @@ -8248,7 +8534,7 @@ src/app/components/manage/workflows/workflows.component.html 9 - Add Workflow + Lisää työnkulku Disabled @@ -8264,7 +8550,7 @@ src/app/components/manage/workflows/workflows.component.html 46 - No workflows defined. + Työnkulkuja ei ole määritelty. Saved workflow "". @@ -8272,7 +8558,7 @@ src/app/components/manage/workflows/workflows.component.ts 79 - Saved workflow "". + Tallennettu työnkulku "". Error saving workflow. @@ -8280,7 +8566,7 @@ src/app/components/manage/workflows/workflows.component.ts 87 - Error saving workflow. + Virhe tallennettaessa työnkulkua. Confirm delete workflow @@ -8288,7 +8574,7 @@ src/app/components/manage/workflows/workflows.component.ts 95 - Confirm delete workflow + Vahvista työnkulun poisto This operation will permanently delete this workflow. @@ -8296,7 +8582,7 @@ src/app/components/manage/workflows/workflows.component.ts 96 - This operation will permanently delete this workflow. + Tämä toiminto poistaa tämän työnkulun pysyvästi. Deleted workflow @@ -8304,7 +8590,7 @@ src/app/components/manage/workflows/workflows.component.ts 105 - Deleted workflow + Työnkulku poistettu Error deleting workflow. @@ -8312,7 +8598,7 @@ src/app/components/manage/workflows/workflows.component.ts 110 - Error deleting workflow. + Virhe poistaessa työnkulkua. Not Found @@ -8344,7 +8630,7 @@ src/app/data/custom-field.ts 21 - Date + Päiväys Integer @@ -8352,7 +8638,7 @@ src/app/data/custom-field.ts 25 - Integer + Kokonaisluku Number @@ -8360,7 +8646,7 @@ src/app/data/custom-field.ts 29 - Number + Numero Monetary @@ -8368,7 +8654,7 @@ src/app/data/custom-field.ts 33 - Monetary + Valuutta Text @@ -8376,7 +8662,7 @@ src/app/data/custom-field.ts 37 - Text + Teksti Url @@ -8384,7 +8670,7 @@ src/app/data/custom-field.ts 41 - Url + URL Document Link @@ -8392,7 +8678,7 @@ src/app/data/custom-field.ts 45 - Document Link + Asiakirjan linkki Modified @@ -8513,7 +8799,7 @@ src/app/data/paperless-config.ts 50 - General Settings + Yleiset asetukset OCR Settings @@ -8521,7 +8807,7 @@ src/app/data/paperless-config.ts 51 - OCR Settings + OCR-asetukset Output Type @@ -8537,7 +8823,7 @@ src/app/data/paperless-config.ts 83 - Language + Kieli Pages @@ -8569,7 +8855,7 @@ src/app/data/paperless-config.ts 113 - Image DPI + Kuvan DPI Clean @@ -8625,7 +8911,7 @@ src/app/data/paperless-config.ts 164 - OCR Arguments + OCR-argumentit Application Logo @@ -8633,7 +8919,7 @@ src/app/data/paperless-config.ts 171 - Application Logo + Sovelluksen logo Application Title @@ -8641,7 +8927,7 @@ src/app/data/paperless-config.ts 178 - Application Title + Sovelluksen nimi Warning: You have unsaved changes to your document(s). @@ -8737,7 +9023,7 @@ src/app/pipes/custom-date.pipe.ts 14 - %s year ago + %s vuosi sitten %s years ago @@ -8745,7 +9031,7 @@ src/app/pipes/custom-date.pipe.ts 15 - %s years ago + %s vuotta sitten %s month ago @@ -8753,7 +9039,7 @@ src/app/pipes/custom-date.pipe.ts 19 - %s month ago + %s kuukausi sitten %s months ago @@ -8761,7 +9047,7 @@ src/app/pipes/custom-date.pipe.ts 20 - %s months ago + %s kuukautta sitten %s week ago @@ -8769,7 +9055,7 @@ src/app/pipes/custom-date.pipe.ts 24 - %s week ago + %s viikko sitten %s weeks ago @@ -8777,7 +9063,7 @@ src/app/pipes/custom-date.pipe.ts 25 - %s weeks ago + %s viikkoa sitten %s day ago @@ -8785,7 +9071,7 @@ src/app/pipes/custom-date.pipe.ts 29 - %s day ago + %s päivä sitten %s days ago @@ -8793,7 +9079,7 @@ src/app/pipes/custom-date.pipe.ts 30 - %s days ago + %s päivää sitten %s hour ago @@ -8801,7 +9087,7 @@ src/app/pipes/custom-date.pipe.ts 34 - %s hour ago + %s tunti sitten %s hours ago @@ -8809,7 +9095,7 @@ src/app/pipes/custom-date.pipe.ts 35 - %s hours ago + %s tuntia sitten %s minute ago @@ -8817,7 +9103,7 @@ src/app/pipes/custom-date.pipe.ts 39 - %s minute ago + %s minuuttia sitten %s minutes ago @@ -8825,7 +9111,7 @@ src/app/pipes/custom-date.pipe.ts 40 - %s minutes ago + %s minuuttia sitten Just now @@ -8833,7 +9119,7 @@ src/app/pipes/custom-date.pipe.ts 72 - Just now + Juuri äsken (no title) @@ -8973,7 +9259,7 @@ src/app/services/open-documents.service.ts 114 - Haluatko varmasti sulkea tämän dokumentin? + Haluatko varmasti sulkea tämän asiakirjan? Are you sure you want to close all documents? @@ -8981,7 +9267,7 @@ src/app/services/open-documents.service.ts 137 - Haluatko varmasti sulkea kaikki dokumentit? + Haluatko varmasti sulkea kaikki asiakirjat? Close documents @@ -8989,7 +9275,7 @@ src/app/services/open-documents.service.ts 139 - Sulje dokumentit + Sulje asiakirjat English (US) diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 2e0b0ddf8..490427f42 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Le document a été ajouté à Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Impossible d'ajouter : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Le document est en cours de traitement par Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Préc. @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Suivant @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Terminer @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Le tableau de bord peut être utilisé pour afficher les vues enregistrées, comme une boîte de réception. Ces paramètres se trouvent dans Paramètres > Vues enregistrées. @@ -433,7 +445,7 @@ 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 - 173 + 175 Glissez-déposez les documents ici pour commencer à les téléverser ou placez-les dans le dossier « consume ». Vous pouvez glisser-déposer les documents sur n'importe quelle autre page de l'application. Une fois fait, Paperless-ngx va commencer à exécuter ses algorithmes d'apprentissage automatique. @@ -441,7 +453,7 @@ 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 - 178 + 180 La liste des documents affiche tous vos documents et permet le filtrage ainsi que l'édition de masse. Il y a trois styles de vue différents : liste, vignettes et liste détaillée. Une liste de documents actuellement ouverts à l'édition est affichée dans la barre latérale. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Les filtres vous permettent de trouver rapidement des documents en utilisant diverses recherches, dates, étiquettes, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Toute combinaison de filtres peut être enregistrée sous la forme d'une « vue » qui peut ensuite être affichée sur le tableau de bord et / ou la barre latérale. @@ -465,7 +477,7 @@ 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 - 196 + 198 Les étiquettes, correspondants, types de documents et chemins de stockage peuvent tous être gérés à l'aide de ces pages. Ils peuvent également être créés à partir de la vue d'édition du document. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Les workflows vous donnent plus de contrôle sur le processus de traitement des documents. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Consultez les paramètres pour les diverses améliorations apportées à l'application Web et pour activer les paramètres pour les vues enregistrées. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Merci ! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Il y a <em>des tonnes</em> de fonctionnalités et d'informations supplémentaires que nous n'avons pas couvertes ici, mais cela devrait vous aider à démarrer. Consultez la documentation ou visitez le projet sur GitHub pour en savoir plus ou pour signaler des problèmes. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx ! @@ -549,36 +561,6 @@ Les options de configuration de l'application globaux s'appliquent à <strong>tous</strong> les utilisateurs de cette installation de Paperless-ngx. Les options peuvent aussi être définies en utilisant les variables d'environnement ou le fichier de configuration mais la valeur ici sera toujours prioritaire. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Abandonner @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Afficher les messages de confirmation - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - La suppression de documents requiert toujours une confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Recherche globale - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Rechercher dans la base de données uniquement (n'inclut par les résultats de recherche avancée) + Ne pas inclure les résultats de recherche avancée + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + La recherche complète mène à + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Rechercher un titre ou du contenu + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Recherche avancée Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Activer les notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Droits d'accès par défaut @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Les paramètres s'appliquent à ce compte utilisateur pour les objets (Tags, Règles de Mail, etc.) créés via l'interface web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propriétaire par défaut @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Autorisations de consultation par défaut @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Autorisations de modification par défaut @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Traitement de documents @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Afficher des notifications lorsque de nouveaux documents sont détectés @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Afficher des notifications lorsque le traitement des documents se termine avec succès @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Afficher des notifications en cas d'échec du traitement des documents @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Supprimer les notifications du tableau de bord @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Cela supprimera tous les messages liés au traitement de documents sur le tableau de bord. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Afficher un avertissement lors de la fermeture d’une vue enregistrée avec des modifications non enregistrées @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Taille des pages des documents @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Afficher sous forme de @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tableau @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Peittes cartes @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Grandes cartes @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Par défaut @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Aucune vue sauvegardée n'est définie. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vue sauvegardée « » supprimée. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Les paramètres ont été enregistrés avec succès. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Les paramètres ont été enregistrés avec succès. Un rechargement est nécessaire pour appliquer certains changements. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recharger maintenant @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Erreur lors de l'enregistrement des paramètres sur le serveur. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ échec + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + Corbeille + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + Gérer les documents mis à la corbeille en attente de suppression. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + Restaurer le(s) sélectionné(s) + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + Effacer le(s) sélectionné(s) + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + Vider la corbeille + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + Restants + + + days + + src/app/components/admin/trash/trash.component.html + 58 + + jour(s) + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restaurer + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural,=1 {Un document dans la corbeille} other { documents dans la corbeille}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirmer la suppression + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + Cette opération effacera définitivement ce document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Cette action est irréversible. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document effacé + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + Cette action effacera définitivement les documents sélectionnés. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 77 + + Cette opération effacera définitivement tous les documents de la corbeille. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) effacé(s) + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restauré + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restauré(s) + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,51 +2665,7 @@ Cette opération supprimera définitivement ce compte utilisateur. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Cette action est irréversible. - - + Proceed src/app/components/admin/users-groups/users-groups.component.ts @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2529,7 +2723,7 @@ src/app/components/manage/workflows/workflows.component.ts 99 - Continuer + Continuer Deleted user @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentation @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondants @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Types de document @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Chemins de stockage @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 est disponible. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Cliquer pour visualiser. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Comment ça fonctionne ? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Mise à jour disponible @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Rechercher - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Recherche avancée + Rechercher Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Ouvrir @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filtrer les documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Aucun résultat @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Vues enregistrées @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Étiquettes @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondants @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Types de document @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Chemins de stockage @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Utilisateurs @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groupes @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Champs personnalisés @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Comptes de messagerie @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Règles de courriel @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Objet mis à jour avec succès. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Une erreur s'est produite lors de la sauvegarde de l'objet. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirmer + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Page + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + sur + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages à supprimer + Documents: @@ -3187,11 +3425,19 @@ Régénérer toutes les métadonnées + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Supprimer les documents originaux après une fusion réussie + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 Notez que seuls les PDF seront inclus. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Notez que seuls les PDF seront pivotés. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Page - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - sur - Add Split @@ -3239,6 +3457,14 @@ Ajouter une séparation + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Supprimer le document original après une séparation réussie + View @@ -4868,6 +5094,26 @@ Filtrer les documents avec ce + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Supprimer le lien + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Ouvrir le lien + No documents found @@ -4977,6 +5223,14 @@ Ajouter une étiquette + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Supprimer l'étiquette + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrer les documents avec ces étiquettes - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Ouvrir le lien - What's this? @@ -5665,6 +5911,54 @@ Tout afficher + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrer par correspondant + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrer par type de document + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrer par chemin de stockage + View Preview @@ -5729,11 +6023,19 @@ Nombre total de caractères + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + NSA actuel + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Autres @@ -5888,8 +6190,8 @@ Télécharger l'original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Relancer la ROC + Retraiter More like this @@ -5932,15 +6234,23 @@ Pivoter + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Supprimer une/des page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Précédent @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Détails @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numéro de série d'archivage (NSA) @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date de création @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenu @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date de modification @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date d'ajout @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nom de fichier du média @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nom du fichier d'origine @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Somme de contrôle MD5 de l'original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Taille du fichier original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Type MIME de l'original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Somme de contrôle MD5 de l'archive @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Taille du fichier archivé @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Métadonnées du document original @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Métadonnées du document archivé @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Prévisualisation @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historique @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Enregistrer & suivant @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Enregister & fermer @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Saisir le mot de passe @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Une erreur s'est produite lors du chargement du contenu : @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Modifications du document détectées @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 La version de ce document dans la session de votre navigateur semble plus ancienne que la version existante. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Sauvegarder le document ici peut écraser les autres modifications qui ont été faites. Pour restaurer la version existante, annulez vos modifications ou fermez le document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Document suivant @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Document précédent @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Enregistrer le document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Erreur lors de la récupération des métadonnées @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Erreur lors de la récupération des suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document enregistré avec succès. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Erreur lors de la sauvegarde du document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirmer la suppression + Voulez-vous vraiment déplacer le document «  » vers la corbeille ? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Voulez-vous vraiment supprimer le document « » ? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Les documents peuvent être restaurés avant la suppression définitive. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Supprimer le document + Déplacer vers la corbeille Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Erreur lors de la suppression du document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Confirmer la relance de la ROC - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Cette opération écrasera l’OCR pour ce document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - La relance de l'ORC va démarrer en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir le nouveau contenu. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Confirmer le retraitement + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + Cette action recréera définitivement le fichier d'archive pour ce document. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + Le fichier d'archive va être régénéré avec les paramètres actuels. + + + Reprocess operation 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 + 831 + + L'opération de retraitement va démarrer en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir le nouveau contenu. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Erreur lors de l'exécution de l'opération @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Ajustement de la page @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Confirmation de la séparation @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Cette opération séparera définitivement le(s) document(s) sélectionné(s) dans de nouveaux documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 L’opération de séparation commencera en arrière-plan. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Erreur lors de l’exécution de l’opération de séparation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Confirmation de la rotation @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Cette action pivotera définitivement la version originale du document courant. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Ceci modifiera la copie originale. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 La rotation va démarrer en arrière-plan. Fermez et rouvrez le document une fois l'opération terminée pour voir les modifications. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Erreur lors de l'exécution de l'opération de rotation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Confirmer la suppression des pages + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + Cette action supprimera définitivement les pages sélectionnées du document original. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + La suppression des pages va démarrer en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir les modifications. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Erreur lors de l'exécution de l'opération de suppression des pages + No entries found. @@ -6874,51 +7204,51 @@ Cette opération va affecter les champs personnalisés et supprimera les champs personnalisés sur les document(s) sélectionné(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirmer la suppression - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Cette action supprimera définitivement le(s) document(s) sélectionné(s). + Déplacer les document(s) sélectionné(s) vers la corbeille ? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Supprimer le(s) document(s) + Cette action recréer définitivement les fichiers d'archive pour les document(s) sélectionné(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Cette opération écrasera l’OCR pour les document(s) sélectionné(s). + Les fichiers d'archive vont être régénérés avec les paramètres actuels. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Cette opération pivotera définitivement la version originale de document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Ceci modifiera la copie originale. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Confirmation de la fusion @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Cette opération fusionnera définitivement document(s) sélectionné(s) dans un nouveau document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Le document fusionné sera dans la file d'attente pour consommation. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrer par correspondant - Filter by tag @@ -6970,40 +7288,8 @@ Afficher les notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrer par type de document - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrer par chemin de stockage - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Création : + Date de création : Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondant @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondants @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Dernière utilisation @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Voulez-vous vraiment supprimer le correspondant « » ? diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 5a821440b..a3e46e4bc 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 המסמך התווסף ל - paperless-ng. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 לא יכול להוסיף את : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 מסמך נמצא בעיבוד ע"י Paperless-NG. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 הקודם @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 הבא @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 סיום @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 ניתן להשתמש בלוח המחוונים כדי להציג תצוגות שמורות, כגון 'תיבת דואר נכנס'. הגדרות אלו נמצאות תחת הגדרות > תצוגות שמורות לאחר יצירה. @@ -433,7 +445,7 @@ 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 - 173 + 175 גרור ושחרר מסמכים כאן כדי להתחיל להעלות או למקם אותם בתיקיות הרצויות. אתה יכול גם לגרור ולשחרר מסמכים בכל מקום בכל שאר הדפים. לאחר שתעשה זאת, Paperless-ngx ילמד להתאים את האלגורים המידת שלו. @@ -441,7 +453,7 @@ 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 - 178 + 180 רשימת המסמכים מציגה את כל המסמכים שלך ומאפשרת סינון כמו גם עריכה בכמות גדולה. ישנם שלושה סגנונות תצוגה שונים: רשימה, כרטיסים קטנים וכרטיסים גדולים. רשימה של מסמכים שנפתחו כעת לעריכה מוצגת בסרגל הצד. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 כלי הסינון מאפשרים לך למצוא במהירות מסמכים באמצעות חיפושים שונים, תאריכים, תגים וכו'. @@ -457,7 +469,7 @@ 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 - 191 + 193 ניתן לשמור כל שילוב של מסננים בתור 'תצוגה' אשר לאחר מכן יכולה להיות מוצגת בלוח המחוונים ו/או בסרגל הצד. @@ -465,7 +477,7 @@ 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 - 196 + 198 ניתן לנהל תגיות, מתכתבים, סוגי מסמכים ונתיבי אחסון באמצעות דפים אלה. ניתן ליצור אותם גם מתצוגת עריכת המסמך. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 זרימות עבודה מעניקות לך יותר שליטה על המסמך. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 בדוק את ההגדרות עבור שינויים שונים באפליקציית הוואב והחלף את ההגדרות עבור תצוגות שמורות. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 תודה רבה! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 לבסוף, בשם כל תורם לפרויקט הנתמך על ידי הקהילה, תודה על השימוש ב-Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 בטל @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ הצג חלונות לאישור - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - מחיקת מסמך תמיד יציג חלון אישור. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + חיפוש מתקדם Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 הפעל הערות @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 הרשאות ברירת מחדל @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 ההגדרות חלות על חשבון משתמש זה עבור אובייקטים (תגים, כללי דואר וכו') שנוצרו באמצעות ממשק המשתמש באינטרנט @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 בעלים מקורי @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 הרשאות ברירת מחדל עבור צפיה בקובץ @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 הרשאות ברירת מחדל עבור קובץ @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 התראות @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 עיבוד מסמך @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 הצג התראה כאשר זוהו מסמכים חדשים @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 הצג התראה כאשר עיבוד מסמך הסתיים בהצלחה @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 הצג התראה כאשר עיבוד מסמך נכשל @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 העלם התראות בעמוד הבקרה @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 ביצוע פעולה זו תעלים את כל ההודעות על סטטוס עיבוד מסמך בעמוד הבקרה. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 הצג אזהרה כאשר סוגרים מסמך שצפינו ולא שמרנו בו שינויים @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 ברירת המחדל @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 לא הוגדרה שמירת צפייה. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 ההגדרות נשמרו בהצלחה @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 ההגדרות נשמרו בהצלחה. נדרשת טעינה מחדש כדי להחיל שינויים מסוימים. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 טען מחדש כעת @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 שגיאה בתהליך שמירת ההגדרות בשרת @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ נכשל + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + אישור מחיקה + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + פעולה זו אינה הפיכה. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ הפעולה הזאת תמחק את המשתמש הזה לצמיתות. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - פעולה זו אינה הפיכה. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 תיעוד @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 מכותבים @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 סוגי מסמכים @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 נתיבי אחסון @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 זמין. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 לחץ להצגה. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 איך זה עובד? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 קיים עדכון @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - חיפוש מתקדם + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + אשר + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + דף + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - דף - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + פתח קישור + No documents found @@ -4977,6 +5223,14 @@ הוסף תגית + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - פתח קישור - What's this? @@ -5665,6 +5911,54 @@ הצג הכל + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + סנן לפי סוגי מסמכים + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ סך התווים + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 אחר @@ -5888,8 +6190,8 @@ הורדת קובץ המקור - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - בצע OCR בשנית + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 הקודם @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 פרטים @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 מספר סידורי בארכיון @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 תאריך יצירה @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 תוכן @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 תאריך שינוי @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 תאריך הוספה @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 שם קובץ המסמך @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 שם קובץ מקורי @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 סכום בדיקה MD5 לקובץ המקורי @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 גודל הקובץ המקורי @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 סוג ה-mime המקורי @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 סכום בדיקה MD5 לקובץ בארכיון @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 גודל הקובץ בארכיון @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 מטא-נתונים של המסמך המקורי @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 מטא-נתונים של המסמך בארכיון @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 תצוגה מקדימה @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 שמור & הבא @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 שמור & סגור @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 הזן סיסמה @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 ארעה שגיאה בטעינת התוכן: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 שגיאה באחזור נתונים @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 שגיאה באחזור הצעות. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 מסמך נשמר בהצלחה. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 שגיאה בשמירת מסמך - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - אישור מחיקה + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - בטוח שברצנך למחוק את המסמך ? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - הקבצים עבור מסמך זה יימחקו לצמיתות. לא ניתן לבטל פעולה זו. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - מחק מסמך + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 שגיאה במחיקת מסמך - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - בצע וידוא OCR בשנית - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - פעולה זו תבצע סריקת OCR מחודשת של המסמך. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - ביצוע OCR מחדש תתחיל ברקע. סגור ופתח מחדש או רענן את המסמך לאחר שהפעולה תושלם לצפייה בתוכן החדש. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 שגיאת הרצה @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 התאם תצוגה לרוחב הדף @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - אישור מחיקה - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - מחק מסמך + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ הצגת הערות - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - סנן לפי סוגי מסמכים - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 מכותב @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 מכותבים @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 שימוש אחרון @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 בטוח שברצנך למחוק את המכותב ? diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index ff92f5225..16e73adb9 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument je dodan u Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Bezuspješno dodavanje : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokument je u fazi obrade. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prethodno @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Sljedeće @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Kraj @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Puno hvala! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Discard @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Show confirmation dialogs - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Deleting documents will always ask for confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Advanced search Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Postavke ovog korisničkog računa za objekte (Oznake, Pravila za e-poštu, itd.) stvorene putem web sučelja @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Document processing @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when new documents are detected @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing completes successfully @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Show notifications when document processing fails @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + This operation cannot be undone. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - This operation cannot be undone. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentacija @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Dopisnici @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 je dostupno. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klikni za prikaz. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx može automatski provjeriti aktualizaciju @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Kako ovo radi? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Dostupno ažuriranje @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Advanced search + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potvrdi + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Page + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Page - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Dodaj oznaku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtriraj dokumente sa ovim tag-ovima - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Prikaži sve + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Ukupno znakova + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Ostalo @@ -5888,8 +6190,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prethodni @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalji @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Serijski broj pohrane @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum izrade @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirm delete + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Delete document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Delete confirm - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Delete document(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 dopisnik @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 dopisnici @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index e35f3ccf7..2fc20cc1d 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 A dokumentum hozzá lett adva a Paperless-ngx-hez. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nem tudta hozzáadni a : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 A dokumentumot a Paperless-ngx feldolgozza. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Előző @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Következő @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Vége @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 A irányítópult mentett nézetek, például a "Beérkezett üzenetek" megjelenítésére is használható. Ezeket a beállításokat a Beállítások > Mentett nézetek menüpont alatt találja, ha már létrehozott néhányat. @@ -433,7 +445,7 @@ 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 - 173 + 175 Húzza ide a dokumentumokat a feltöltés megkezdéséhez, vagy helyezze el őket a Feldolgozási mappában. A webes alkalmazás minden más oldalán is bárhová áthúzhatja a dokumentumokat. Amint ezt megteszi, a Paperless-ngx elkezdi a gépi tanulási algoritmusok futtatását. @@ -441,7 +453,7 @@ 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 - 178 + 180 A dokumentumok listája mutatja az összes dokumentumot, és lehetővé teszi a szűrést, valamint a tömeges szerkesztést. Három különböző nézeti stílus áll rendelkezésre: lista, kis kártyák és nagy kártyák. Az oldalsávban megjelenik az éppen szerkesztésre megnyitott dokumentumok listája. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 A szűrőeszközök lehetővé teszik a dokumentumok gyors megtalálását különböző keresések, dátumok, címkék stb. segítségével. @@ -457,7 +469,7 @@ 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 - 191 + 193 A szűrők bármely kombinációja elmenthető "nézetként", amely aztán megjeleníthető a műszerfalon és/vagy az oldalsávban. @@ -465,7 +477,7 @@ 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 - 196 + 198 A címkék, levelezők, dokumentumtípusok és tárolási útvonalak mind kezelhetők ezekkel az oldalakkal. Ezek a dokumentumszerkesztési nézetből is létrehozhatók. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Nézze meg a beállításokat a webes alkalmazás különböző finomításaihoz, és kapcsolja be a mentett nézetek beállításait. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Köszönöm! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Vannak <em>tonna</em> további funkciók és információk, amelyeket itt nem mutattunk be, de kezdheti ezekkel. Nézze meg a dokumentációt, vagy látogasson el a projekthez a GitHubon, ha többet szeretne megtudni, vagy ha problémákat szeretne jelenteni. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Végezetül, a közösség által támogatott projekt minden közreműködője nevében köszönjük, hogy használod a Paperless-ngx-et! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Eldob @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Megerősítő párbeszédpanelek megjelenítése - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - A dokumentumok törlése mindig megerősítést kér. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Speciális keresés Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Jegyzetek engedélyezése @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Alapértelmezett engedélyek @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 A beállítások erre a felhasználói fiókra vonatkoznak a webes felhasználói felületen létrehozott objektumok (címkék, levelezési szabályok stb.) esetében @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Alapértelmezett tulajdonos @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Alapértelmezett nézeti engedélyek @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Alapértelmezett szerkesztési engedélyek @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Értesítések @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentumfeldolgozás @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Értesítések megjelenítése új dokumentumok észlelésekor @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Értesítések megjelenítése a dokumentum feldolgozásának sikeres befejezésekor @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Értesítések megjelenítése, ha a dokumentum feldolgozása sikertelen @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Értesítések elnyomása a irányítópulton @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Ez elnyomja a dokumentum feldolgozási állapotára vonatkozó összes üzenetet az irányítópulton. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Figyelmeztetés megjelenítése mentett nézetek bezárásakor el nem mentett módosításokkal @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Alapértelmezett @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nincsenek mentett nézetek definiálva. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Mentett nézet "" törölve. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 A beállítások sikeresen mentésre kerültek. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 A beállítások sikeresen mentésre kerültek. Egyes módosítások alkalmazásához újratöltés szükséges. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Újratöltés most @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Hiba a beállítások tárolása közben a kiszolgálón. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ sikertelen + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Törlés megerősítése + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Ezt a műveletet nem lehet visszacsinálni. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Ez a művelet véglegesen törli ezt a felhasználói fiókot. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Ezt a műveletet nem lehet visszacsinálni. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentáció @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Kapcsolattartók @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Dokumentumtípusok @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Tárolási útvonalak @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 rendelkezésre áll. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Kattintson a megtekintéshez. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Hogyan működik ez? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Frissítés elérhető @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Speciális keresés + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Megerősítés + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Oldal + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Oldal - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Szűrje meg a dokumentumokat ezzel a címmel + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Link megnyitása + No documents found @@ -4977,6 +5223,14 @@ Címke hozzáadása + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Szűrje a dokumentumokat ezekkel a címkékkel - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Link megnyitása - What's this? @@ -5665,6 +5911,54 @@ Mindent megmutat + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Szűrés kapcsolattartó szerint + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Szűrés dokumentumtípus szerint + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Szűrés tárolási útvonal szerint + View Preview @@ -5729,11 +6023,19 @@ Összes karakter + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Egyéb @@ -5888,8 +6190,8 @@ Eredeti letöltés - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Előző @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Részletek @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archívum sorszáma @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Létrehozás dátuma @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Tartalom @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Módosított dátum @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Hozzáadás dátuma @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Média fájlnév @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Eredeti fájlnév @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Eredeti MD5 ellenőrző összeg @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Eredeti fájlméret @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Eredeti mime típus @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archívum MD5 ellenőrző összege @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archivált fájl mérete @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Eredeti dokumentum metaadatai @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archivált dokumentum metaadatok @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Előnézet @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Mentés & következő @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Mentés & bezárás @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Jelszó megadása @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Hiba történt a tartalom betöltése során: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Hiba a metaadatok lekérdezésében @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Hiba a javaslatok lekérdezésében. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 A dokumentum sikeresen mentve. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Dokumentum mentési hiba - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Törlés megerősítése + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Tényleg törölni szeretné a "" dokumentumot? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - A dokumentum fájljai véglegesen törlésre kerülnek. Ez a művelet nem vonható vissza. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Dokumentum törlése + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Hiba a dokumentum törlésében - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR megerősítése - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Ez a művelet véglegesen újra elvégzi a dokumentum OCR-felismerését. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Az OCR-művelet újbóli elvégzése a háttérben kezdődik. A művelet befejezése után zárja be és nyissa meg újra a dokumentumot, vagy töltse be újra, hogy az új tartalom megjelenjen. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Hiba a művelet végrehajtásában @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Oldal illesztése @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Törlés megerősítése - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Ez a művelet véglegesen törli a kiválasztott dokumentum(ok)at. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Dokumentum(ok) törlése + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Ez a művelet véglegesen újra elvégzi a kiválasztott dokumentum(ok) OCR-felismerését. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Szűrés kapcsolattartó szerint - Filter by tag @@ -6970,40 +7288,8 @@ Jegyzetek megtekintése - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Megjegyzések - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Szűrés dokumentumtípus szerint - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Szűrés tárolási útvonal szerint - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Létrehozva: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 kapcsolattartó @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 kapcsolattartók @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Utoljára használt @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Tényleg törölni akarja a "" levelezőt? diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 11abbb3c0..e0306892c 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokumen telah ditambahkan ke Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Tidak dapat menambahkan : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokumen sedang diproses oleh Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Sebelumnya @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Selanjutnya @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Akhir @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Dasbor dapat digunakan untuk menampilkan tampilan tersimpan, seperti sebagai 'Kotak Masuk'. Pengaturan tersebut ditemukan di bawah Pengaturan > Tampilan tersimpan setelah Anda membuatnya. @@ -433,7 +445,7 @@ 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 - 173 + 175 Seret dan lepas dokumen di sini untuk mulai mengunggah atau tempatkan pada folder konsumsi. Anda juga dapat seret dan lepas dokumen di mana pun pada halaman lainnya. Setelah itu, Paperless-ngx akan mulai melatih algoritma pembelajaran mesinnya. @@ -441,7 +453,7 @@ 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 - 178 + 180 Daftar dokumen menunjukkan semua dokumen Anda dan memungkinkan penyaringan serta pengeditan masal. Ada tiga gaya tampilan berbeda: daftar, kartu kecil, dan kartu besar. Daftar dokumen yang sedang diedit ada di bilah samping. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Alat pemfilteran memungkinkan Anda untuk menemukan dokumen dengan cepat menggunakan berbagai pencarian, tanggal, label, dll. @@ -457,7 +469,7 @@ 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 - 191 + 193 Kombinasi filter apapun dapat disimpan sebagai 'tampilan' yang dapat ditampilkan pada dasbor dan / atau bilah samping. @@ -465,7 +477,7 @@ 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 - 196 + 198 Label, koresponden, tipe dokumen, dan lokasi penyimpanan dapat dikelola menggunakan halaman ini. Ini semua juga dapat dibuat via tampilan edit dokumen. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Terima kasih! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Terakhir, atas nama setiap kontributor untuk proyek yang didukung komunitas ini, terima kasih telah menggunakan Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Batalkan @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Tampilkan dialog konfirmasi - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Menghapus dokumen akan selalu meminta konfirmasi. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Pencarian lanjutan Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktifkan catatan @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Izin bawaan @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Pengaturan diterapkan untuk akun pengguna ini untuk objek (Label, Aturan Surel, dll.) yang dibuat via UI web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Pemilik Bawaan @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Izin Tampilan Bawaan @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Izin Pengeditan Bawaan @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikasi @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Memproses dokumen @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Tampilkan notifikasi saat dokumen baru terdeteksi @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Tampilkan notifikasi saat dokumen berhasil diproses @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Tampilkan notifikasi saat dokumen gagal diproses @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Bawaan @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Muat ulang sekarang @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Kesalahan saat menyimpan pengaturan ke server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ gagal + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Konfirmasi hapus + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Tindakan ini tidak bisa dibatalkan. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Tindakan ini akan menghapus secara permanen akun pengguna ini. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Tindakan ini tidak bisa dibatalkan. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentasi @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Koresponden @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipe Dokumen @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Lokasi Penyimpanan @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 telah tersedia. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Ketuk untuk melihat. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx dapat secara otomatis memeriksa pembaruan @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Bagaimana ini dapat bekerja? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Pembaruan tersedia @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Pencarian lanjutan + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Konfirmasi + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Halaman + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Buat ulang semua metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Halaman - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Saring dokumen dengan ini + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Buka tautan + No documents found @@ -4977,6 +5223,14 @@ Tambah label + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter dokumen dengan label berikut - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Buka tautan - What's this? @@ -5665,6 +5911,54 @@ Tampilkan semua + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter berdasarkan koresponden + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter berdasarkan jenis dokumen + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter berdasarkan lokasi penyimpanan + View Preview @@ -5729,11 +6023,19 @@ Total huruf + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Lainnya @@ -5888,8 +6190,8 @@ Unduh asli - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Lakukan ulang pengenalan karakter + Reprocess More like this @@ -5932,15 +6234,23 @@ Putar + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Sebelumnya @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Rincian @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Nomor serial arsip @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Tanggal dibuat @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Konten @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Tanggal dimodifikasi @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Tanggal ditambahkan @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nama Berkas Media @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nama file asli @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 Asli @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Ukuran file asli @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Jenis mime asli @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Ukuran file arsip @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pratinjau @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Simpan & lanjut @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Simpan & tutup @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Masukan Kata Sandi @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Terjadi kesalahan saat memuat konten: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Kesalahan saat mendapatkan metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokumen berhasil disimpan. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Kesalahan saat menyimpan dokumen - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Konfirmasi hapus + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Apakah Anda yakin ingin menghapus dokumen ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - File untuk dokumen akan dihapus secara permanen. Operasi ini tidak dapat diurungkan. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Hapus dokumen + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Kesalahan saat menghapus dokumen - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Delete confirm - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Delete document(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter berdasarkan koresponden - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter berdasarkan jenis dokumen - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter berdasarkan lokasi penyimpanan - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 koresponden @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 koresponden @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Terahkir digunakan @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Apakah Anda yakin ingin menghapus koresponden ""? diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 10915bf5c..25e9fcca5 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Il documento è stato aggiunto a Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Impossibile aggiungere : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Paperless-ngx sta elaborando il documento . @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prec @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Successivo @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Fine @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 La dashboard può essere usata per mostrare le viste salvate, come una 'Inbox'. Queste impostazioni si trovano in Impostazioni > Viste salvate, dopo averne create alcune. @@ -433,7 +445,7 @@ 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 - 173 + 175 Trascina i documenti qui per iniziare a caricarli, oppure posizionali nella cartella di elaborazione. Puoi anche trascinare i documenti ovunque su tutte le altre pagine della web app. Una volta fatto, Paperless-ngx inizierà a formare i suoi algoritmi di machine learning. @@ -441,7 +453,7 @@ 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 - 178 + 180 L'elenco dei documenti mostra tutti i tuoi documenti e consente di filtrarli e modificarli in blocco. Ci sono tre stili di visualizzazione diversi: elenco, carte piccole e carte grandi. Un elenco di documenti attualmente aperti per la modifica è mostrato nella barra laterale. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Gli strumenti di filtraggio ti consentono di trovare rapidamente documenti utilizzando vari termini di ricerca, date, tag, ecc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Qualsiasi combinazione di filtri può essere salvata come 'vista' che può essere visualizzata sulla dashboard e/o nella barra laterale. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etichette, corrispondenti, tipi di documenti e percorsi di archiviazione possono essere gestiti utilizzando queste pagine. Possono anche essere creati dalla vista di modifica dei documenti. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 I flussi di lavoro ti danno più controllo sulla pipeline del documento. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Controlla le impostazioni per varie modifiche all'applicazione web o per attivare o disattivare le impostazioni per le viste salvate. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Grazie! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Ci sono <em>tonnellate</em> di caratteristiche e informazioni che non abbiamo coperto qui, ma questo dovrebbe essere abbastanza per cominciare. Consulta la documentazione o visita il progetto su GitHub per saperne di più o per segnalare problemi. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx! @@ -549,36 +561,6 @@ Opzioni di configurazione globale dell'app che si applicano a <strong>ogni</strong> utente di questa installazione di Paperless-ngx. Le opzioni possono anche essere impostate utilizzando le variabili di ambiente o il file di configurazione, ma il valore qui avrà sempre la precedenza. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Scarta @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Mostra dialoghi di conferma - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Verrà sempre chiesta una conferma prima di eliminare documenti. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Ricerca globale - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Ricerca solo database (non includere risultati di ricerca avanzati) + Non includere i risultati di ricerca avanzati + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Ricerca titolo e contenuto + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Ricerca avanzata Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Abilita note @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permessi predefiniti @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Le impostazioni si applicano a questo account per gli oggetti (Tag, Regole e-mail, ecc.) creati tramite l'interfaccia web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Proprietario predefinito @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permessi predefiniti di visualizzazione @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permessi predefiniti di modifica @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifiche @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Elaborazione del documento @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Notifica quando vengono trovati nuovi documenti @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Notifica quando l'elaborazione del documento viene completata con successo. @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Notifica quando l'elaborazione del documento fallisce @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Non mostrare notifiche nella dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Verranno interrotte tutte le notifiche nella dashboard riguardo lo stato dell'elaborazione dei documenti. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Mostra un avviso quando chiudi le viste salvate con modifiche non salvate @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Dimensione pagina documenti @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Visualizza come @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabella @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Predefinito @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nessuna vista salvata. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 La vista "" è stata eliminata. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Impostazioni salvate con successo. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Impostazioni salvate con successo. È necessario ricaricare per applicare alcune modifiche. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ricarica ora @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Errore durante il salvataggio delle impostazioni sul server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2129,7 +2167,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Completare + Completato Started @@ -2211,6 +2249,206 @@ fallito + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Conferma eliminazione + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Questa operazione non può essere annullata. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Questa operazione eliminerà definitivamente l'account utente. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Questa operazione non può essere annullata. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentazione @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Corrispondenti @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipi di documento @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Percorsi di archiviazione @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 è disponibile. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Clicca per visualizzare. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx può controllare automaticamente la presenza di aggiornamenti @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Come funziona? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Aggiornamento disponibile @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Cerca - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Ricerca avanzata + Cerca Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Apri @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filtra documenti @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Nessun risultato @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documenti @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Viste salvate @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Etichette @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Corrispondenti @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Tipi di documento @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Percorsi di archiviazione @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Utenti @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Gruppi @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Campi personalizzati @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Account email @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Regole email @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Flussi di Lavoro @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Oggetto aggiornato con successo. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Errore durante il salvataggio dell'oggetto. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Conferma + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Pagina + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + di + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pagine da rimuovere + Documents: @@ -3187,11 +3425,19 @@ Rigenera tutti i metadati + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Nota che solo i PDF saranno inclusi. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Nota che solo i PDF saranno ruotati. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Pagina - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - di - Add Split @@ -3239,6 +3457,14 @@ Aggiungi divisione + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4273,7 +4499,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 31 - Avvio del Flusso di lavoro il: + Avvio del Flusso di lavoro quando: Add Trigger @@ -4868,6 +5094,26 @@ Filtra i documenti con questo + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Rimuovi link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Apri link + No documents found @@ -4977,6 +5223,14 @@ Aggiungi tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Rimuovi etichetta + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtra i documenti con queste etichette - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Apri link - What's this? @@ -5603,7 +5849,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 121 - Classifier + Classificatore Last Trained @@ -5665,6 +5911,54 @@ Mostra tutto + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtra per corrispondente + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtra per tipo di documento + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtra per percorso di archiviazione + View Preview @@ -5729,11 +6023,19 @@ Totale caratteri + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + ASN Corrente + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Altro @@ -5888,8 +6190,8 @@ Scarica originale - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ripeti OCR + Rielabora More like this @@ -5932,15 +6234,23 @@ Ruota + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Elimina pagina(e) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Precedente @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Dettagli @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numero seriale di archivio @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data creazione @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenuto @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modifica @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data aggiunta @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nome file @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nome file originale @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 originale @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dimensione file originale @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo mime originale @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Checksum MD5 archivio @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Dimensione file archivio @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadati del documento originale @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadati del documento archiviato @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Anteprima @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Note @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Cronologia @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Salva e vai al prossimo @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Salva & chiudi @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Immettere Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Si è verificato un errore durante il caricamento del contenuto: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Rilevate modifiche al documento @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 La versione di questo documento nella sessione del browser appare più vecchia della versione esistente. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Salvare il documento qui potrebbe sovrascrivere altre modifiche apportate. Per ripristinare la versione esistente, annulla le modifiche o chiudi il documento. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Documento successivo @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Documento precedente @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Salva documento @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Errore nel recupero dei metadati @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Errore durante il recupero dei suggerimenti. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Documento salvato con successo. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Errore nel salvare il documento - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Conferma eliminazione + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Vuoi eliminare il documento ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Elimina documento + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Errore durante l'eliminazione del documento - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Conferma Ripeti OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Questa operazione effettuerà la rilettura OCR di questo documento. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - L'operazione di rilettura OCR inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i nuovi contenuti. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Conferma rielaborazione + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + L'attività di rielaborazione inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i nuovi contenuti. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Errore nell'esecuzione dell'operazione @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Adatta Alla Pagina @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Conferma divisione @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Questa operazione dividerà i documenti selezionati in nuovi documenti. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 L'operazione di divisione inizierà in background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Errore durante l'operazione di divisione @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Conferma rotazione @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Questa operazione ruoterà in modo permanente la versione originale del documento attuale. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Questa azione modificherà la copia originale. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 L'operazione di rotazione inizierà in background. Chiudi e riapri questo documento dopo che l'operazione è stata completata per vedere i cambiamenti. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Errore nell'esecuzione dell'operazione di rotazione + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Conferma eliminazione pagine + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + L'attività di eliminazione delle pagine inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i cambiamenti. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Errore durante l'eliminazione delle pagine + No entries found. @@ -6874,51 +7204,51 @@ Questa operazione assegnerà i campi personalizzati e rimuoverà i campi personalizzati su documenti selezionati. - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Conferma eliminazione - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Questa operazione eliminerà definitivamente documento/i selezionato/i. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Elimina documento/i + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Questa operazione riesegue completamente l'OCR per i documento/i selezionato/i. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Questa operazione ruoterà in modo permanente la versione originale di documenti. + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Questa azione modificherà la copia originale. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Conferma unione @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Questa operazione unirà documenti selezionati in nuovi documenti. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Il documento unito sarà messo in coda per l'elaborazione. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtra per corrispondente - Filter by tag @@ -6970,40 +7288,8 @@ Visualizza note - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Note - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtra per tipo di documento - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtra per percorso di archiviazione - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creato il: + Creato: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corrispondente @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corrispondenti @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Ultimo utilizzato @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Vuoi eliminare il corrispondente ""? diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 4dbffc57b..4725cec0e 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 ドキュメント が Paperless-ngx に追加されました @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 を追加できませんでした: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 ドキュメント が Paperless-ngx に処理されています @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 前へ @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 次のドキュメント @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 終了 @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 ダッシュボードを使用して「受信トレイ」などの保存済みビューを表示することができます。これらの設定は、[設定] > [保存済みビュー] の下にあります。 @@ -433,7 +445,7 @@ 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 - 173 + 175 アップロードを開始するにはここにファイルをドラッグ & ドロップするか、フォルダーに配置します。Web アプリページの任意の場所にドラッグ & ドロップしても構いません。アップロードの完了後、Paperless-ngx は機械学習アルゴリズムのトレーニングを開始します。 @@ -441,7 +453,7 @@ 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 - 178 + 180 ドキュメントリストには自分のドキュメントが表示され、一括編集だけでなくフィルタリングも可能です。ビューには、リスト形式、小さなカード形式、大きなカード形式の 3 種類のスタイルがあります。現在、編集のために開いているドキュメントの一覧はサイドバーに表示されます。 @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 フィルタリングツールを使用すると、日付、タグなどさまざまな検索方法で、ドキュメントをすばやく見つけることができます。 @@ -457,7 +469,7 @@ 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 - 191 + 193 フィルターを組み合わせたものを「ビュー」として保存し、ダッシュボードやルート、サイドバーに表示することができます。 @@ -465,7 +477,7 @@ 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 - 196 + 198 タグ、担当、ドキュメントタイプ、フォルダーは、すべてこれらのページで管理できます。ドキュメントの編集画面から作成することもできます。 @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 ワークフローを使用すると、ドキュメントの処理工程を詳細に制御することができます。 @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Web アプリに対するさまざまな調整の設定を確認し、保存済みビューの設定を切り替えます。 @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 ありがとうございます! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 ツアーでは説明できなかった機能や情報はまだまだ <em> たくさん </em> ありますが、ここから確認することができます。マニュアルを確認したり、より詳細な学習または問題の報告のために GitHub のプロジェクトページを参照してください。 @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 最後に、このコミュニティ支援プロジェクトのすべての貢献者を代表して申し上げます。Paperless-ngx をご利用いただきありがとうございます! @@ -549,36 +561,6 @@ Paperless-ngx の <strong>すべての</strong> ユーザーに適用されるグローバル設定オプションです。 環境変数または設定ファイルを使用して設定することもできますが、ここでの値が常に優先されます。 - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 破棄 @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ 確認ダイアログを表示する - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - ドキュメントを削除する際は、常に確認が求められます。 - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + 高度な検索 Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 メモを有効にする @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 デフォルト権限 @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Web UI 経由で作成されたオブジェクト (タグ、メールルールなど) の設定が、このユーザーアカウントに適用されます @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 デフォルトの所有者 @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 デフォルトの表示権限 @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 デフォルトの編集権限 @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 通知 @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 ドキュメントの処理 @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 新しいドキュメントが検出されたときに通知を表示する @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 ドキュメント処理が正常に完了したときに通知を表示する @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 ドキュメント処理が失敗したときに通知を表示する @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 ダッシュボードでの通知を抑制する @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 これにより、ドキュメント処理ステータスに関するすべてのメッセージがダッシュボードに表示されなくなります。 @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 未保存の変更を含む保存済みビューを閉じるときに警告を表示する @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 既定 @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 保存済みビューは定義されていません。 @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 保存済みビュー "" を削除しました @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 設定は正常に保存されました @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 設定は正常に保存されました。変更を適用するには再読み込みが必要です。 @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 今すぐ再読み込み @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 サーバーへの設定の保存中にエラーが発生しました @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ 失敗した + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + 本当に削除しますか? + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + この操作は取り消すことができません。 + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ この操作により、このユーザーアカウントは完全に削除されます。 - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - この操作は取り消すことができません。 - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 マニュアル @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 担当 @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 ドキュメントタイプ @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 フォルダー @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 が利用可能です。 @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 クリックして表示 @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngxは自動的にアップデートを確認できます @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 アップデートの自動確認機能について @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 アップデートがあります。 @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - 高度な検索 + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + 確認 + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + ページ + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + / + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ すべてのメタデータを再生成 + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 PDFのみ含まれることに注意してください @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 PDFのみ回転することに注意してください - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - ページ - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - / - Add Split @@ -3239,6 +3457,14 @@ 分割の追加 + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ この でドキュメントをフィルター + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + リンクを開く + No documents found @@ -4977,6 +5223,14 @@ タグを追加 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ これらのタグでドキュメントをフィルター - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - リンクを開く - What's this? @@ -5665,6 +5911,54 @@ すべて表示 + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + 担当でフィルター + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + ドキュメントタイプでフィルター + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + フォルダーでフィルター + View Preview @@ -5729,11 +6023,19 @@ 総文字数 + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 その他 @@ -5888,8 +6190,8 @@ 元のドキュメントをダウンロード - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR を再実行 + Reprocess More like this @@ -5932,15 +6234,23 @@ 回転 + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 前のドキュメント @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 詳細 @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 アーカイブ番号 @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 作成日 @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 内容 @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 更新日 @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 追加日 @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 メディアファイル名 @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 元のファイル名 @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 元の MD5 チェックサム @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 元のファイルサイズ @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 元の MIME タイプ @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 アーカイブの MD5 チェックサム @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 アーカイブのファイルサイズ @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 元のドキュメントのメタデータ @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 アーカイブされたドキュメントのメタデータ @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 プレビュー @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 メモ @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 保存して次へ @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 保存して閉じる @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 パスワードを入力 @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 コンテンツ: の読み込み中にエラーが発生しました @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 ドキュメントの変更を検出しました @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 ブラウザセッション内のこのドキュメントのバージョンは、実際のバージョンより古いようです。 @@ -6268,7 +6578,7 @@ 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 - 355 + 367 ここでドキュメントを保存すると、その他の変更が上書きされる可能性があります。実際のバージョンに更新するには、変更を破棄するか、ドキュメントを閉じてください。 @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 メタデータの取得に失敗しました @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 提案の取得に失敗しました @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 ドキュメントは正常に保存されました @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 ドキュメントの保存に失敗しました - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - 本当に削除しますか? + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - ドキュメント "" を削除してもよろしいですか? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - このドキュメントのファイルは完全に削除されます。この操作は取り消すことができません。 - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - ドキュメントを削除しました + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 ドキュメントの削除に失敗しました - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - OCR を再実行しますか? - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - この操作により、このドキュメントに OCR が再実行されます - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - OCR の再実行はバックグラウンドで処理されます。処理の完了後、このドキュメントを一度閉じて再度開くか、再読み込みすることで、新しいコンテンツが表示されます。 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 操作の実行に失敗しました @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 ページに合わせる @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 本当に分割しますか? @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 この操作により、選択したドキュメントが新しいドキュメントに分割されます @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 分割処理はバックグラウンドで開始されます @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 分割処理に失敗しました @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 本当に回転しますか? @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 この操作により、現在のドキュメントの元のバージョンが恒久的に回転します。 - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - これは元のコピーを変更します - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 回転はバックグラウンドで開始されます。処理の完了後、このドキュメントを一度閉じて再度開くことで、変更結果を確認できます。 @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 回転処理に失敗しました + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - 本当に削除しますか? - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - この操作により、選択中の ドキュメントは完全に削除されます。 + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - ドキュメントを削除 + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - この操作により、選択中の ドキュメントに OCR が再実行されます + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 この操作により、 ドキュメントの元のバージョンが恒久的に回転します。 + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + これは元のコピーを変更します + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 本当に結合しますか? @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 この操作により、選択中の ドキュメントが新しいドキュメントに分割されます @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 結合されたドキュメントはキューに追加されます - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - 担当でフィルター - Filter by tag @@ -6970,40 +7288,8 @@ メモを表示 - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - メモ - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - ドキュメントタイプでフィルター - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - フォルダーでフィルター - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - 作成日: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 担当 @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 担当 @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 最終使用日 @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 担当 "" を削除してもよろしいですか? diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 130f92502..a7ed472d8 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -16,7 +16,7 @@ node_modules/src/ngb-config.ts 13 - HH + Close @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Paperless-ngx에 문서가 추가되었습니다. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 를 추가할 수 없습니다: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 문서가 Paperless-ngx에서 처리 중 입니다. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 이전 @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 다음 @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 끝내기 @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 대시보드에서 저장된 필터 프리셋이나 메일함을 볼 수 있습니다. 만들어 둔 프리셋은 설정 > 저장된 프리셋에서 찾을 수 있습니다. @@ -433,7 +445,7 @@ 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 - 173 + 175 이곳에 파일을 드래그&드랍하여 업로드를 하거나 넣어둘 폴더에 갖다 두세요. Paperless-ngx의 모든 페이지에서 문서를 드래그&드랍 할 수 있습니다. 파일을 올리면 Paperless-ngx가 머신 러닝을 수행하게 될 것입니다. @@ -441,7 +453,7 @@ 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 - 178 + 180 문서 탭에서는 모든 문서들을 보거나 필터링 또는 복수 편집을 지원합니다. 또한 세가지의 문서 보기를 지원합니다: 목록, 작게 미리보기, 크게 미리보기. 문서를 열게되면 사이드바에 편집중인 문서로 보이게 됩니다. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 필터 도구는 생성일, 태그 등으로 문서들을 빠르게 검색하는 데 도움을 준답니다. @@ -457,7 +469,7 @@ 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 - 191 + 193 필터링 조합은 프리셋으로 지정할 수 있습니다. 프리셋은 사이드바나 대시보드에서 확인할 수 있습니다. @@ -465,7 +477,7 @@ 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 - 196 + 198 태그, 기안자, 문서 타입 또는 저장 경로는 이 페이지에서 관리할 수 있습니다. 문서 편집창에서 또한 관리할 수 있습니다. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 설정페이지에서 @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 감사합니다! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 필수적인 기능을 다 알아봤습니다. 그렇지만 지금 여기서 다루지 못한 <em>수 많은 기능</em>들이 기다리고 있습니다. 기술문서 또는 프로젝트 Github에 방문하여 더 알아보거나 사용 중 발생한 이슈를 제보해주세요. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 마지막으로, 이 커뮤니티 지원 프로젝트의 기여자들을 대표하여, Paperless-ngx를 이용해주셔서 감사합니다! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Discard @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Show confirmation dialogs - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Deleting documents will always ask for confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + 고급 검색 Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 메모 활성화 @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 기본 권한 @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 기본 열람 권한 @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 기본 편집 권한 @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 알림 @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 문서 처리중 @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when new documents are detected @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing completes successfully @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Show notifications when document processing fails @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 기본값 @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 지금 새로 고침 @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 서버에 설정을 저장하는 중 오류가 발생하였습니다. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ 실패 + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + 삭제 검토 + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + 이 작업은 되돌릴 수 없습니다. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ 이 작업은 사용자 계정을 영구적으로 삭제합니다. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - 이 작업은 되돌릴 수 없습니다. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 문서 @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondents @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 문서 타입 @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 저장 경로 @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 Github @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is available. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 클릭해서 보기. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다. @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 어떻게 작동할까요? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 업데이트 가능 @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - 고급 검색 + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + 확인 + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + 페이지 + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - 페이지 - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + 링크 열기 + No documents found @@ -4977,6 +5223,14 @@ 태그 추가 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - 링크 열기 - What's this? @@ -5665,6 +5911,54 @@ 모두 보기 + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ 총 문자 수 + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 기타 @@ -5888,8 +6190,8 @@ 원본 다운로드 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR 재수행 + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 내용 @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 미디어 파일명 @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 원본 파일명 @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 원본 MD5 체크섬 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 원본 파일 사이즈 @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 원본 MIME 타입 @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 체크섬 기록 @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 파일 사이즈 기록 @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 원본 문서 메타데이터 @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 문서 메타데이터 기록됨 @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 미리보기 @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 저장 후 다음 @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 저장 후 닫기 @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 비밀번호 입력 @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 메타데이터를 가져오는데 실패하였습니다. @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 추천을 가져오는데 실패하였습니다. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 문서를 성공적으로 저장하였습니다. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 문서를 저장하는데 오류가 발생하였습니다. - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - 삭제 검토 + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - 문서 삭제 + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 문서 삭제 오류 - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - OCR 재작업 확인 - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - 이 작업은 해당 문서에 되돌릴 수 없는 OCR재작업을 수행합니다. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - OCR 작업은 백그라운드에서 진행됩니다. 작업이 완료된 후 문서를 닫고 다시 열거나 새로고침을 하면 새로운 OCR 작업결과를 볼 수 있습니다. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 작업 수행중 오류가 발생하였습니다. @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 페이지 맞춤 @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - 삭제 확인 - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - 문서 삭제 + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ 노트 보기 - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index f67917037..08c89623b 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Konnt de Fichier net dobäisetzen: @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prev @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Weider @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 End @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Merci! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Verwerfen @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Bestätegungsmessagë weisen - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Beim Läsche vun Dokumenter gëtt ëmmer no enger Bestätegung gefrot. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Erweidert Sich Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1153,13 +1163,13 @@ src/app/data/document.ts 95 - Notes + Notizen Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1297,17 +1307,17 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 57 - Users: + Benotzer: Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1333,13 +1343,13 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 65 - Groups: + Gruppen: Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikatiounen @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumenteveraarbechtung @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Notifikatiounen uweise wann nei Dokumenter detektéiert ginn @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Notifikatiounen uweise wann d'Dokumentveraarbechtung erfollegräich ofgeschloss ass @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Notifikatiounen uweise wann d'Dokumenteveraarbechtung feelschléit @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Notifikatiounen op der Startsäit ënnerdrécken @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Doduerch ginn all Messagen iwwer Dokumenteveraarbechtung op der Startsäit ënnerdréckt. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Virdefinéiert @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Keng gespäichert Usiicht definéiert. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gespäichert Usiicht "" geläscht. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Astellungen erfollegräich gespäichert. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Astellungen erfollegräich gespäichert. Nei lueden ass néideg fir verschidden Ännerungen ze applizéieren. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Elo nei lueden @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Läsche bestätegen + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Dës Operatioun kann net réckgängeg gemaach ginn. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Dës Operatioun kann net réckgängeg gemaach ginn. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentatioun @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondenten @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 ass disponibel. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klicke fir unzeweisen. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 How does this work? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Update disponibel @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Erweidert Sich + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bestätegen + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Säit + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Säit - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Etikett dobäisetzen + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Alles uweisen + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + No Korrespondent filteren + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Original eroflueden - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Zréck @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detailer @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archiv-Seriennummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Erstellungsdatum @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhalt @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Verännert um @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dobäigesat um @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Dateinumm vum Mediefichier @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original Dateinumm @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5-Préifzomm vum Original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dateigréisst vum Original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Urspréngleche MIME-Typ @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-Préifzomm vum Archiv @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archiv-Dateigréisst @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadate vum Original-Dokument @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadate vum Archiv-Dokument @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Späicheren a weider @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Passwuert aginn @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Läsche bestätegen + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Wëllt Dir d'Dokument "" wierklech läschen? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - D'Fichiere fir dëst Dokument gi permanent geläscht. Dës Operatioun kann net réckgängeg gemaach ginn. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Dokument läschen + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Läsche bestätegen - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Dës Operatioun wäert ausgewielt Dokument(er) permanent läschen. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Dokument(er) läschen + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - No Korrespondent filteren - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Erstallt: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 Korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 Korrespondenten @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Fir d'lescht benotzt @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Soll de Korrespondent "" wierklech geläscht ginn? diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index cd0fa834d..5a3813858 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nevarēja pievienot : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Iepriekšējais @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Nākamā @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Beigas @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Paldies! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Discard @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Show confirmation dialogs - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Deleting documents will always ask for confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Paplašinātā meklēšana Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ieslēgt piezīmes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Noklusētās atļaujas @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Noklusētais īpašnieks @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Noklusētās skata atļaujas @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Noklusētās rediģēšanas atļaujas @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Paziņojumi @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumenta apstrāde @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when new documents are detected @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing completes successfully @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Show notifications when document processing fails @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Noklusējuma @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Iestatījumi sekmīgi saglabāti. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ neizdevās + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Šo darbību nevar atcelt. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Šo darbību nevar atcelt. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentācija @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondents @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Dokumentu veidi @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Uzglabāšanas ceļi @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is available. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Click to view. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 How does this work? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Pieejams atjauninājums @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Paplašinātā meklēšana + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Apstiprināt + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Lapa + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Lapa - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Atvērt saiti + No documents found @@ -4977,6 +5223,14 @@ Pievienot birku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrēt dokumentus ar šiem tagiem - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Atvērt saiti - What's this? @@ -5665,6 +5911,54 @@ Show all + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrēt pēc dokumenta veida + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Lejupielādēt oriģinālu - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Atkārtot OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Iepriekšējā @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Sīkāka informācija @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Izveides datums @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Saturs @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Labošanas datums @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Pievienošanas datums @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhīva MD5 kontrolsumma @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arhīva faila izmērs @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arhivētā dokumenta metadati @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirm delete + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Delete document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Delete confirm - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Delete document(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ Skatīt piezīmes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrēt pēc dokumenta veida - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 2a4114f31..37b9e9bb3 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document is toegevoegd aan Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Kon niet toevoegen : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document wordt verwerkt door Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Vorige @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Volgende @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Einde @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Het dashboard kan worden gebruikt om opgeslagen weergaven te tonen, zoals een 'Inbox'. Deze instellingen zijn te vinden onder instellingen > opgeslagen weergaven zodra u er een hebt aangemaakt. @@ -433,7 +445,7 @@ 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 - 173 + 175 Documenten hier neerzetten om te beginnen met uploaden of plaats ze in de verwerkingsmap. Je kunt documenten ook overal naar toe slepen op alle andere pagina's van de web-app. Zodra je dat doet, zal Paperless-ngx de machine learning-algoritmen trainen. @@ -441,7 +453,7 @@ 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 - 178 + 180 De documentenlijst toont al uw documenten en maakt zowel filteren als bulkbewerkingen mogelijk. Er zijn drie verschillende weergavestijlen: lijst, kleine kaarten en grote kaarten. In de navigatiekolom wordt een lijst weergegeven met documenten die momenteel zijn geopend voor bewerking. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Met de filtertools kunt u snel documenten vinden met behulp van verschillende zoekopdrachten, datums, labels, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Een combinatie van filters kan worden opgeslagen als een 'weergave' die vervolgens op het dashboard en/of de navigatiekolom kan worden getoond. @@ -465,7 +477,7 @@ 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 - 196 + 198 Labels, correspondenten, documenttypen en opslagpaden kunnen allemaal worden beheerd met behulp van deze pagina's. Ze kunnen ook worden aangemaakt vanuit de weergave voor documentbewerkingen. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows geven je meer controle over de verwerking van documenten. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Bekijk de instellingen voor verschillende aanpassingen aan de web-app en bewerk de instellingen voor opgeslagen weergaven. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Bedankt! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Er zijn nog <em>veel</em> meer functies en informatie die we hier niet hebben behandeld, maar dit zou je op weg moeten helpen. Bekijk de documentatie of bezoek het project op GitHub voor meer informatie of om problemen te melden. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx! @@ -549,36 +561,6 @@ Algemene configuratieopties die van toepassing zijn op <strong>alle</strong> gebruikers van deze Paperless-ngx installatie. Opties kunnen ook worden ingesteld met behulp van omgevingsvariabelen of het configuratiebestand, maar de waarde die hier is ingesteld zal altijd voorrang krijgen. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Negeren @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Toon dialoogvenster ter bevestiging - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Er zal altijd om bevestiging gevraagd worden voor het verwijderen van documenten. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Globaal zoeken - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Alleen database doorzoeken (geen geavanceerde zoekresultaten) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Geavanceerd zoeken Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notities inschakelen @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standaard rechten @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Instellingen zijn van toepassing op dit gebruikersaccount voor objecten (Tags, Mailregels, etc.) gemaakt via de web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standaard eigenaar @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standaard weergaverechten @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standaard bewerkingsrechten @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Meldingen @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Verwerking van documenten @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Toon meldingen wanneer nieuwe documenten worden gedetecteerd @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Toon een melding wanneer documenten met succes zijn verwerkt @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Toon meldingen wanneer het verwerken van documenten faalt @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Onderdruk meldingen op het dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Dit verbergt alle statusberichten op het dashboard die met het verwerken van documenten te maken hebben. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Toon waarschuwing bij het sluiten van weergaven met niet-opgeslagen wijzigingen @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,31 +1685,31 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 - Documents page size + Documenten paginagrootte Display as src/app/components/admin/settings/settings.component.html - 367 + 383 - Display as + Weergeven als Table src/app/components/admin/settings/settings.component.html - 369 + 385 - Table + Tabel Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Standaard @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Geen opgeslagen weergaven gedefinieerd. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Opgeslagen view "" verwijderd. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Instellingen zijn succesvol opgeslagen. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Instellingen zijn succesvol opgeslagen. Herladen is vereist om sommige wijzigingen toe te passen. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Nu herladen @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Fout bij het opslaan van de instellingen op de server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ mislukt + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Bevestig het verwijderen + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Deze actie kan niet ongedaan worden gemaakt. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Deze actie zal dit gebruikersaccount permanent verwijderen. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Deze actie kan niet ongedaan worden gemaakt. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Handleiding @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondenten @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Documenttypes @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Opslagpaden @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is beschikbaar. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klik om te bekijken. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx kan automatisch controleren op updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Hoe werkt dit? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Update beschikbaar @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Zoeken - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Geavanceerd zoeken + Zoeken Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Openen @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documenten @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Geen resultaten @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documenten @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Opgeslagen weergaven @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Labels @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondenten @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Documenttypes @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Opslagpaden @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Gebruikers @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groepen @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Aangepaste velden @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 E-mailaccounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 E-mailregels @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Object succesvol bijgewerkt. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Fout bij opslaan object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bevestig + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Pagina + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + van + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Alle metadata opnieuw genereren + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Houd er rekening mee dat alleen PDF's worden opgenomen. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Houd er rekening mee dat alleen PDF's worden geroteerd. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Pagina - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - van - Add Split @@ -3239,6 +3457,14 @@ Voeg splitsing toe + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -3265,7 +3491,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + Zoek velden Create new field @@ -4197,7 +4423,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Access logs, Django backend + Toegang logs, Django backend Superuser @@ -4774,7 +5000,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 452 - Open filter + Open filter Keyboard shortcuts @@ -4868,6 +5094,26 @@ Filter documenten met deze + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Link openen + No documents found @@ -4977,6 +5223,14 @@ Label toevoegen + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documenten met deze labels - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Link openen - What's this? @@ -5665,6 +5911,54 @@ Alles weergeven + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Op correspondent filteren + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Documenttypes filteren + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter op opslagpad + View Preview @@ -5729,11 +6023,19 @@ Totaal aantal tekens + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Huidige ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Overige @@ -5888,8 +6190,8 @@ Download origineel - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR opnieuw uitvoeren + Reprocess More like this @@ -5932,15 +6234,23 @@ Roteren + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorige @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archief serienummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Aanmaakdatum @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhoud @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Wijzigingsdatum @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum toegevoegd @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media bestandsnaam @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originele bestandsnaam @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originele MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originele bestandsgrootte @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Oorspronkelijke mime-type @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archief MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archief bestandsgrootte @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Originele document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Gearchiveerde document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Voorbeeld @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notities @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Geschiedenis @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Opslaan & volgende @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Opslaan & sluiten @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Wachtwoord invoeren @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Er is een fout opgetreden bij het laden van de inhoud: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Documentwijzigingen gedetecteerd @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 De versie van dit document in je browsersessie lijkt ouder dan de bestaande versie. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Als je het document hier opslaat, worden mogelijk andere wijzigingen overschreven. Om de bestaande versie te herstellen, kun je de wijzigingen negeren of het document sluiten. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Volgend document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Vorig document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Document opslaan @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fout bij ophalen metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fout bij ophalen suggesties. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document succesvol opgeslagen. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Fout bij opslaan document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Bevestig het verwijderen + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Wilt u het document echt verwijderen ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Verwijder document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Fout bij verwijderen document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Bevestig OCR opnieuw uitvoeren - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor dit document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Opnieuw uitvoeren van OCR-bewerking begint op de achtergrond. Sluit en heropen of herlaad dit document nadat de bewerking is voltooid om nieuwe inhoud te zien. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Fout bij uitvoeren bewerking @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Pagina passend maken @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Splitsen bevestigen @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Deze bewerking splitst de geselecteerde document(en) op in nieuwe documenten. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Splits bewerking zal op de achtergrond beginnen. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Fout bij uitvoeren splits bewerking @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Roteren bevestigen @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Met deze bewerking wordt de originele versie van het huidige document permanent geroteerd. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Roteren begint op de achtergrond. Sluit het document en open het opnieuw nadat de bewerking is voltooid om de wijzigingen te bekijken. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Fout bij uitvoeren van rotatie bewerking + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6650,7 +6980,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 143 - Archived files + Gearchiveerde bestanden Original files @@ -6658,7 +6988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 147 - Original files + Originele bestanden Use formatted filename @@ -6840,7 +7170,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 549 - This operation will assign the custom field "" to selected document(s). + Deze bewerking zal het aangepaste veld toevoegen aan geselecteerde document(en). This operation will assign the custom fields to selected document(s). @@ -6848,7 +7178,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 554,556 - This operation will assign the custom fields to selected document(s). + Deze bewerking zal de aangepaste velden toevoegen aan geselecteerde document(en). This operation will remove the custom field "" from selected document(s). @@ -6856,7 +7186,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 562 - This operation will remove the custom field "" from selected document(s). + Deze bewerking zal het aangepaste veld verwijderen van geselecteerde document(en). This operation will remove the custom fields from selected document(s). @@ -6864,7 +7194,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 567,569 - This operation will remove the custom fields from selected document(s). + Deze bewerking zal de aangepaste velden verwijderen van geselecteerde document(en). This operation will assign the custom fields and remove the custom fields on selected document(s). @@ -6872,53 +7202,53 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 571,575 - This operation will assign the custom fields and remove the custom fields on selected document(s). + Deze bewerking zal de aangepaste velden toewijzen en de aangepaste velden verwijderen van geselecteerde document(en). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Bevestig verwijderen - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - geselecteerd(e) document(en) zullen permanent worden verwijderd. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Verwijder document(en) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor geselecteerd(e) document(en). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 - This operation will permanently rotate the original version of document(s). + Met deze bewerking wordt de originele versie van document(en) permanent geroteerd. + + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Hierdoor wordt de originele kopie gewijzigd. Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Samenvoegen bevestigen @@ -6926,30 +7256,18 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 - This operation will merge selected documents into a new document. + Deze bewerking voegt geselecteerde documenten samen tot een nieuw document. Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Op correspondent filteren - Filter by tag @@ -6970,40 +7288,8 @@ Bekijk notities - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - notities - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Documenttypes filteren - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter op opslagpad - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Aangemaakt: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondenten @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Laatst gebruikt @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Bent u zeker dat u correspondent "" wilt verwijderen? diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 628ec9c10..2dc5eeced 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Kunne ikke legge til : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Forrige @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Neste @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Slutt @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Dashbordet kan bli brukt til å vise lagrede visninger, som for eksampel en "Inboks". Disse innstillingene finnes under Innstillinger > Lagrede visninger når du har opprettet dem. @@ -433,7 +445,7 @@ 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 - 173 + 175 Dra-og-slipp dokumenter hit for å laste dem opp, eller plasser dem i opplastningsmappen. Du kan også dra-og-slippe dokumenter hvor som helst på alle andre sider av nettsiden. Da vil Paperless-ngx starte å trene opp maskinlæringsalgoritmene sine. @@ -441,7 +453,7 @@ 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 - 178 + 180 Dokumentlisten viser alle dokumentene dine og tillater filtrering i tillegg til masseredigering. Det finnes tre forskjellige visningsstiler: liste, små kort og store kort. En liste over dokumenter som er åpnet for redigering vises i sidepanelet. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Filtreringsverktøy lar deg raskt finne dokumenter ved hjelp av ulike søk, datoer, etiketter, osv. @@ -457,7 +469,7 @@ 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 - 191 + 193 Enhver kombinasjon av filtre kan lagres som en 'visning' som deretter kan vises på dashbordet og/eller på sidepanelet. @@ -465,7 +477,7 @@ 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 - 196 + 198 Både etiketter, korrespondenter, dokumenttyper og lagringsstier kan administreres ved bruk av disse sidene. De kan også opprettes fra redigeringsvisningen av dokumenter. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Sjekk ut innstillingene for forskjellige justeringer for web-applikasjonen og endre innstillinger for lagrede visninger. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Tusen takk! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Det er <em>langt</em> flere funksjoner og informasjon vi ikke dekte her, dette bør være nok til å komme i gang. Sjekk dokumentasjonen eller besøk prosjektet på GitHub for å lære mer eller rapportere feil. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Og sist, på vegne av hver bidragsyter til dette fellesskapsstøttede prosjektet. Takk for at du bruker Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Forkast @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Vis bekreftelsesdialoger - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Sletting av dokumenter vil alltid be om bekreftelse. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Avansert søk Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktiver notater @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standardtillatelser @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Innstillinger gjelder denne brukerkontoen for objekter (Tags, e-postregler, osv.) opprettet via web-grensesnittet @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standard eier @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standard visningstillatelser @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standard redigeringstillatelser @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Varsler @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentbehandling @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Vis varsler når nye dokumenter oppdages @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Vis varsler når dokumentbehandling er fullført @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Vis varsler når dokumentbehandlingen mislykkes @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Skjul varsler på dashbordet @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Dette vil skjule alle meldinger om dokumentbehandlingsstatus på dashbordet. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Vis advarsel når du lukker lagrede visninger med ulagrede endringer @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Standard @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ingen lagrede visninger definert. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Lagret visning "" slettet. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Innstillingene ble lagret. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Innstillingene ble lagret. Siden må lastes inn på nytt for å ta i bruk alle endringer. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Oppfrisk nå @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Feil ved lagring av innstillinger på serveren. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ feilet + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Bekreft sletting + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Denne handlingen kan ikke angres. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Denne operasjonen vil permanent slette denne brukerkontoen. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Denne handlingen kan ikke angres. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentasjon @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondenter @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 er tilgjengelig. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klikk for å se. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx kan automatisk sjekke etter oppdateringer @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Hvordan fungerer dette? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Oppdatering er tilgjengelig @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Avansert søk + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bekreft + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Side + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Side - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtrer dokumenter med dette + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Legg til etikett + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrer dokumenter med disse Etikettene - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Vis alle + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrer etter korrespondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrer etter dokumenttype + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrer etter lagringssti + View Preview @@ -5729,11 +6023,19 @@ Totalt antall tegn + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Annen @@ -5888,8 +6190,8 @@ Last ned original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Gjør ny OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Forrige @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkiver serienummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Dato opprettet @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Innhold @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Dato endret @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dato lagt til @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filnavn @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Opprinnelig filnavn @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Opprinnelig MD5-sjekksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Opprinnelig filstørrelse @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Opprinnelig mimetype @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiver MD5-sjekksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkivstørrelse @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Opprinnelig dokumentmetadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkivert dokumentmetadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Forhåndsvis @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Lagre & Avslutt @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Lagre & Lukk @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Skriv inn passord @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Det oppstod en feil ved lasting av innhold: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Feil ved henting av metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Feil ved henting av forslag. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokumentet ble lagret. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Feil ved lagring av dokument - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Bekreft sletting + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Ønsker du virkelig å slette dokumentet ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Filene til dokumentet vil bli slettet permanent. Denne operasjonen kan ikke angres. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Slett dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Gjenta OCR bekreft - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Denne operasjonen vil permanent gjenta OCR for dette dokumentet. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Bekreft sletting - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Slett dokument(er) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrer etter korrespondent - Filter by tag @@ -6970,40 +7288,8 @@ Vis notater - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrer etter dokumenttype - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrer etter lagringssti - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Opprettet: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Sist brukt @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 0f4997c03..1075218d1 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument został dodany do Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nie można dodać : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokument jest przetwarzany przez Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Poprzedni @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Następny @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Koniec @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Pulpit może być używany do wyświetlania zapisanych widoków, takich jak 'Skrzynka odbiorcza'. Ta konfiguracja znajdują się w Ustawienia > Zapisane widoki. @@ -433,7 +445,7 @@ 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 - 173 + 175 Przeciągnij i upuść dokumenty tutaj, aby rozpocząć przesyłanie lub umieść je w folderze konsumpcji. Możesz również przeciągać i upuszczać dokumenty gdziekolwiek na wszystkich stronach aplikacji internetowej. Gdy dodasz dokumenty, Paperless-ngx rozpocznie ucznie swoich algorytmów ML. @@ -441,7 +453,7 @@ 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 - 178 + 180 Lista dokumentów pokazuje wszystkie Twoje dokumenty i pozwala na filtrowanie oraz edycję zbiorczą. Istnieją trzy różne style widoku: lista, małe karty i duże karty. Lista dokumentów obecnie otwartych do edycji jest wyświetlana na pasku bocznym. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Narzędzia filtrowania pozwalają szybko znaleźć dokumenty za pomocą różnych wyszukiwań, dat, tagów itp. @@ -457,7 +469,7 @@ 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 - 191 + 193 Każda kombinacja filtrów może być zapisana jako 'widok', który może być wyświetlany na pulpicie i/lub pasku bocznym. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tagi, korespondenci, typy dokumentów i ścieżki zapisu mogą być zarządzane za pomocą tych stron. Można je również tworzyć z poziomu widoku edycji dokumentu. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Procesy umożliwiają większą kontrolę nad przepływem dokumentów. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Sprawdź ustawienia umożliwiające dostosowania aplikacji oraz zmień parametry dla zapisanych widoków. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Dziękujemy! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Jest <em>dużo</em> więcej funkcji i informacji, których tutaj nie opisaliśmy, ale to powinno wystarczyć na początek. Sprawdź dokumentację lub odwiedź projekt na GitHub, aby dowiedzieć się więcej lub zgłaszać problemy. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Na koniec, w imieniu każdego współtwórcy tego projektu wspieranego przez społeczność, dziękujemy za używanie Paperless-ngx! @@ -549,36 +561,6 @@ Globalna konfiguracja aplikacji, która ma zastosowanie do <strong>każdego</strong> użytkownika tej instalacji Paperless-ngx. Parametry można również ustawiać za pomocą zmiennych środowiskowych lub pliku konfiguracyjnego, ale wartość tutaj zawsze będzie miała pierwszeństwo. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Zaniechaj @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Używaj dialogów potwierdzenia - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Usuwanie dokumentów zawsze będzie wymagało potwierdzenia. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Wyszukiwanie globalne - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Tylko przeszukiwanie bazy danych (nie obejmuje wyników wyszukiwania zaawansowanego) + Nie uwzględniaj wyników wyszukiwania zaawansowanego + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Wyszukiwania całościowe wskazuje na + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Wyszukiwanie tytułów i treści + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Wyszukiwanie zaawansowane Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Włącz notatki @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Domyślnie uprawnienia @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Konfiguracja dotyczy uprawnień wskazanego konta użytkownika do obiektów (tagi, reguły pocztowe itp.) utworzonych za pomocą interfejsu webowego @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Domyślny Właściciel @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Domyślne uprawnienia do przeglądania @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Domyślne uprawnienia do edycji @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Powiadomienia @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Przetwarzanie dokumentów @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Pokaż powiadomienia, gdy zostaną wykryte nowe dokumenty @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Pokaż powiadomienia, gdy przetwarzanie dokumentu zakończy się pomyślnie @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Pokaż powiadomienia, gdy przetwarzanie dokumentu nie powiedzie się @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Wyłącz powiadomienia na pulpicie @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Wyłącz pokazywanie wszystkich wiadomości o statusie przetwarzania dokumentów na pulpicie. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Pokaż ostrzeżenie podczas zamykania utworzonych widoków z niezapisanymi zmianami @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Rozmiar strony dokumentów @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Wyświetl jako @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabela @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Małe karty @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Duże karty @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Domyślne @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nie zdefiniowano zapisanych widoków. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Zapisany widok "" został usunięty. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Ustawienia zapisane pomyślnie. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Ustawienia zostały pomyślnie zapisane. Przeładowanie jest wymagane do zastosowania zmian. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Załaduj ponownie @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Błąd podczas zapisywania ustawień na serwerze. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ niepowodzenie + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Potwierdź usunięcie + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Ta czynność nie może być cofnięta. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Ta operacja trwale usunie konto tego użytkownika. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Ta czynność nie może być cofnięta. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentacja @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Nadawcy @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Typy dokumentów @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Ścieżki zapisu @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 jest dostępny. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Kliknij, aby zobaczyć. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Jak to działa? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Aktualizacja jest dostępna @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Szukaj - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Wyszukiwanie zaawansowane + Szukaj Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Otwórz @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filtrowanie dokumentów @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 Brak wyników @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Dokumenty @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Zapisane widoki @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tagi @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Korespondenci @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Typy dokumentów @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Ścieżki zapisu @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Użytkownicy @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Grupy @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Pola dodatkowe @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Konta pocztowe @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Reguły poczty @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Procesy @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Pomyślnie zaktualizowano obiekt. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Wystąpił błąd podczas zapisywania obiektu. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potwierdź + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Strona + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + z + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Strony do usunięcia + Documents: @@ -3187,11 +3425,19 @@ Wygeneruj wszystkie metadane + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Usuń oryginalnych dokumentów po pomyślnym scaleniu + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 Należy pamiętać, że uwzględnione zostaną tylko pliki PDF. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Należy pamiętać, że obrócone zostaną tylko pliki PDF. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Strona - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - z - Add Split @@ -3239,6 +3457,14 @@ Dodaj podział + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Usuń oryginalny dokument po udanym podziale + View @@ -4868,6 +5094,26 @@ Filtruj dokumenty z tym + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Usuń link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Otwórz link + No documents found @@ -4977,6 +5223,14 @@ Dodaj tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Usuń tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtruj dokumenty za pomocą tych tagów - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Otwórz link - What's this? @@ -5665,6 +5911,54 @@ Pokaż wszystkie + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtruj według nadawcy + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtruj według typu dokumentu + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtruj według ścieżki zapisu + View Preview @@ -5729,11 +6023,19 @@ Całkowita liczba znaków + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Bieżący ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Inne @@ -5888,8 +6190,8 @@ Pobierz oryginał - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Powtórz OCR + Ponowne przetwórz More like this @@ -5932,15 +6234,23 @@ Obrót + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Usuń strony + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Poprzedni @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Szczegóły @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numer seryjny archiwum @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data utworzenia @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Zawartość @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modyfikacji @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data dodania @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nazwa pliku @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Oryginalna nazwa pliku @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5 - Suma kontrolna Oryginału @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Rozmiar oryginalnego pliku @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Typ mime oryginału @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Suma kontrolna archiwum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Rozmiar pliku archiwalnego @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadane oryginalnego dokumentu @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadane zarchiwizowanego dokumentu @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Podgląd @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notatki @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historia @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Zapisz & następny @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Zapisz & zamknij @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Wprowadź hasło @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Wystąpił błąd podczas ładowania zawartości: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Wykryto zmiany w dokumencie @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 Wersja tego dokumentu w sesji przeglądarki wydaje się starsza niż istniejąca. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Zapisanie dokumentu w tym miejscu może spowodować nadpisanie innych wprowadzonych zmian. Aby przywrócić istniejącą wersję, należy odrzucić wprowadzone zmiany lub zamknąć dokument. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Następny dokument @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Poprzedni dokument @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Zapisz dokument @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Błąd podczas pobierania metadanych @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Błąd podczas pobierania sugestii. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument zapisany pomyślnie. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Błąd podczas zapisywania dokumentu - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Potwierdź usunięcie + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Czy na pewno chcesz usunąć dokument""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Pliki tego dokumentu zostaną trwale usunięte. Tej operacji nie można cofnąć. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Usuń dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Błąd usuwania dokumentu - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Potwierdź powtórzenie OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Ta operacja nieodwracalnie powtórzy OCR dla tego dokumentu. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Powtórny OCR rozpocznie się w tle. Zamknij i ponownie otwórz lub odśwież ten dokument po zakończeniu operacji, aby zobaczyć nową zawartość. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Potwierdzenie ponownego przetwarzania + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 821 + + Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami. + + + Reprocess operation 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 + 831 + + Operacja ponownego przetwarzania rozpocznie się w tle. Zamknij i ponownie otwórz lub załaduj dokument po zakończeniu operacji, aby zobaczyć nową zawartość. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Błąd podczas wykonywania operacji @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Dopasuj do strony @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Potwierdzenie podziału @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Ta operacja spowoduje podzielenie wybranych dokumentów na nowe. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Operacja podziału rozpocznie się w tle. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Błąd podczas wykonywania operacji podziału @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Potwierdzenie obrotu @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Ta operacja spowoduje trwały obrót oryginalnej wersji bieżącego dokumentu. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Spowoduje to zmianę oryginalnej kopii. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Obracanie rozpocznie się w tle. Zamknij i ponownie otwórz dokument po zakończeniu operacji, aby zobaczyć zmiany. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Błąd podczas wykonywania operacji obracania + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Potwierdzenie usunięcia stron + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + Ta operacja spowoduje trwałe usunięcie wybranych stron z oryginalnego dokumentu. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Operacja usuwania stron rozpocznie się w tle. Zamknij i ponownie otwórz lub załaduj dokument po zakończeniu operacji, aby zobaczyć zmiany. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Błąd podczas wykonywania operacji usuwania stron + No entries found. @@ -6874,51 +7204,51 @@ Ta operacja przypisze pola niestandardowe i usunie niestandardowe pola na wybranych dokumentach. - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Potwierdź Usunięcie - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Ta operacja trwale usunie zaznaczonych dokumentów. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Usuń dokument(y) + Ta operacja trwale odtworzy pliki archiwum dla wybranych dokumentów. - - This operation will permanently redo OCR 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 - 752 + 756 - Ta operacja powtórzy OCR dla wybranych dokumentów. + Pliki archiwum zostaną ponownie wygenerowane z bieżącymi ustawieniami. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Ta operacja spowoduje trwały obrót oryginalnej wersji dokumentu(ów). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Spowoduje to zmianę oryginalnej kopii. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Potwierdzenie połączenia @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Ta operacja połączy wybrane dokumenty w nowy dokument. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Połączony dokument zostanie umieszczony w kolejce do pobrania. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtruj według nadawcy - Filter by tag @@ -6970,40 +7288,8 @@ Wyświetl notatki - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notatki - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtruj według typu dokumentu - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtruj według ścieżki zapisu - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Utworzono: + Utworzono: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespondenci @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Ostatnio używane @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Czy na pewno chcesz usunąć nadawcę ""? diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 223983e6b..80dc0e5ca 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Documento foi adicionado ao Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Não foi possível adicionar : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Documento está sendo processado pelo Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Anterior @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Próximo @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Fim @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 O painel pode ser usado para mostrar visualizações salvas, como uma 'Caixa de Entrada'. Essas configurações são encontradas em Configurações > Visualizações, assim que você criar algumas. @@ -433,7 +445,7 @@ 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 - 173 + 175 Arraste e solte documentos aqui para começar a carregá-los ou coloque-os na pasta de consumo. Você também pode arrastar e soltar documentos em qualquer lugar em todas as outras páginas do aplicativo web. Quando o fizer, Paperless-ngx vai começar a treinar seus algoritmos de aprendizado de máquina. @@ -441,7 +453,7 @@ 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 - 178 + 180 A lista de documentos mostra todos seus documentos e permite filtragem e edição em massa. Há três diferentes estilos de visualização: lista, cartões pequenos e cartões grandes. Uma lista com documentos atualmente abertos para edição é mostrada na barra lateral. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 As ferramentas de filtragem permitem que você encontre documentos rapidamente usando várias pesquisas, datas, etiquetas, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Qualquer combinação de filtros pode ser salva como uma 'visualização', que será, então, exibida no painel lateral. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etiquetas, correspondentes, tipos de documentos e caminhos de armazenamento podem ser gerenciados usando essas páginas. Eles também podem ser criados a partir da visualização da edição do documento. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Fluxos de trabalho dão mais controle sobre o processamento de documentos. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Confira as configurações para vários ajustes no aplicativo web e alterne configurações para visualizações salvas. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Obrigado! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Há <em>toneladas</em> de recursos e informações que não cobrimos aqui, mas isso deve te ajudar a começar. Confira a documentação ou visite o projeto no GitHub para aprender mais ou relatar problemas. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Por fim, em nome de todos os colaboradores deste projeto apoiado pela comunidade, obrigado por usar o Paperless-ngx! @@ -549,36 +561,6 @@ Opções globais de personalização do aplicativo que se aplicam a <strong>todos</strong> os usuários desta instalação do Paperless-ngx. As opções também podem ser configuradas usando variáveis de ambiente ou o arquivo de configuração, mas o valor aqui sempre terá prioridade. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Descartar @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Mostrar janelas de confirmação - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Ao excluir um documento, sempre será pedido uma confirmação. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Pesquisa avançada Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilitar notas @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permissões Padrão @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 As configurações se aplicam a esta conta de usuário para objetos (Etiquetas, Regras de E-mail, etc.) criados pela interface de usuário da web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Proprietário padrão @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permissões de visualização padrão @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permissões de edição padrão @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificações @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processamento de documentos @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Exibir notificações quando novos documentos forem detectados @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Exibir notificações quando o processamento de um documento concluir com sucesso @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Exibir notificações quando o processamento de um documento falhar @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Não exibir notificações no painel de controle @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Isso esconderá todas as mensagens sobre o status de processamento de documentos no painel de controle. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Mostrar aviso ao fechar visualizações salvas com alterações não salvas @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Padrão @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nenhuma visualização definida. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Visualização "" excluída. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 As configurações foram salvas com sucesso. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 As configurações foram salvas com sucesso. É necessário recarregar para aplicar algumas alterações. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarregar agora @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Erro ao salvar as configurações no servidor. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ falhou + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirmar exclusão + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Essa operação não pode ser revertida. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Esta operação excluirá permanentemente esta conta de usuário. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Essa operação não pode ser revertida. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentação @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondentes @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipos de documentos @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Caminhos de Armazenamento @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 está disponível. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Clique para visualizar. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx pode verificar atualizações automaticamente @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Como isto funciona? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Atualização disponível @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Pesquisa avançada + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirmar + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Página + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + de + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerar todos os metadados + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note que apenas PDFs serão incluídos. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note que apenas PDFs serão girados. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Página - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - de - Add Split @@ -3239,6 +3457,14 @@ Adicionar Divisão + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4869,6 +5095,26 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filtrar documentos com esse + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Abrir link + No documents found @@ -4978,6 +5224,14 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Adicionar etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4986,14 +5240,6 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filtrar documentos com essas Etiquetas - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Abrir link - What's this? @@ -5666,6 +5912,54 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Mostrar todos + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrar por correspondente + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrar por tipo de documento + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrar por caminho de armazenamento + View Preview @@ -5730,11 +6024,19 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Total de caracteres + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5889,8 +6191,8 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Baixar original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5899,7 +6201,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Refazer OCR + Reprocess More like this @@ -5933,15 +6235,23 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Girar + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5953,7 +6263,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5961,7 +6271,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalhes @@ -5969,7 +6279,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5993,7 +6303,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de série de arquivamento @@ -6001,7 +6311,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data de criação @@ -6009,7 +6319,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6037,7 +6347,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6065,7 +6375,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6089,7 +6399,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Conteúdo @@ -6097,7 +6407,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6109,7 +6419,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data de modificação @@ -6117,7 +6427,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data de adição @@ -6125,7 +6435,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nome do arquivo @@ -6133,7 +6443,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nome do arquivo original @@ -6141,7 +6451,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Soma de verificação MD5 original @@ -6149,7 +6459,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Tamanho do arquivo original @@ -6157,7 +6467,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo mime original @@ -6165,7 +6475,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Soma de verificação MD5 de arquivamento @@ -6173,7 +6483,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Tamanho arquivado @@ -6181,7 +6491,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadados do documento original @@ -6189,7 +6499,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadados do documento arquivado @@ -6197,7 +6507,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pré-visualizar @@ -6205,7 +6515,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notas @@ -6213,7 +6523,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6221,7 +6531,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Salvar & próximo @@ -6229,7 +6539,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Salvar & Fechar @@ -6237,7 +6547,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Digite a senha @@ -6245,7 +6555,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6253,7 +6563,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Alterações de documento detectadas @@ -6261,7 +6571,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 A versão deste documento na sessão do seu navegador parece mais antiga que a versão existente. @@ -6269,7 +6579,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc 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 - 355 + 367 Salvar o documento aqui pode substituir outras alterações feitas. Para restaurar a versão existente, descarte suas alterações ou feche o documento. @@ -6277,7 +6587,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6285,7 +6595,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6293,7 +6603,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6301,7 +6611,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6313,7 +6623,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6321,7 +6631,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Erro ao recuperar metadados @@ -6329,7 +6639,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Erro ao recuperar sugestões. @@ -6337,11 +6647,11 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6349,95 +6659,95 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Erro ao salvar documento - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirmar exclusão + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Você realmente deseja excluir o documento ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Excluir documento + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Refazer OCR confirmar - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Esta operação irá refazer o OCR permanentemente para este documento. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - A operação de refazer o OCR começará em segundo plano. Feche e reabra ou recarregue este documento após a operação ser concluída para ver o novo conteúdo. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6445,7 +6755,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Ajustar à Página @@ -6453,7 +6763,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Confirmar Divisão @@ -6461,7 +6771,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 Esta operação dividirá o(s) documento(s) selecionado(s) em novos documentos. @@ -6469,7 +6779,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 A operação de divisão iniciará em segundo plano. @@ -6477,7 +6787,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Erro ao executar a operação de divisão @@ -6485,11 +6795,11 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Confirmar Rotação @@ -6497,27 +6807,15 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 Esta operação irá rotacionar permanentemente a versão original do documento atual. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - Isso irá alterar a versão original. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 A rotação irá iniciar em segundo plano. Feche e reabra o documento após a operação ter completado para ver as mudanças. @@ -6525,10 +6823,42 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Erro ao executar operação de rotação + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6875,51 +7205,51 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirmar exlcusão - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Essa operação irá excluir permanentemente documento(s) selecionado(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Apagar documento(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 Essa operação irá girar permanentemente a versão original do(s) documento(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + Isso irá alterar a versão original. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Confirmar junção @@ -6927,7 +7257,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 Essa operação irá juntar os documentos selecionados em um novo documento. @@ -6935,22 +7265,10 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 O documento juntado será colocado na fila para consumo. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrar por correspondente - Filter by tag @@ -6971,40 +7289,8 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Ver notas - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notas - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrar por tipo de documento - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrar por caminho de armazenamento - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7017,7 +7303,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Criado: + Created: Added: @@ -7671,7 +7957,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondente @@ -7679,7 +7965,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondentes @@ -7687,7 +7973,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Última utilização @@ -7695,7 +7981,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Você realmente deseja excluir o correspondente ""? diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index f3c247b9f..00659cfaf 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 O documento foi adicionado ao paperless. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Não foi possível adicionar : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Ant @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Seguinte @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Fim @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 O painel pode ser usado para mostrar visualizações guardadas, como uma 'Inbox'. Essas configurações são guardadas em Configurações > Views salvas assim que criar algumas. @@ -433,7 +445,7 @@ 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 - 173 + 175 Arraste documentos para aqui para começar a carregar, ou coloque-os na pasta de consumo. Também pode arrastar e largar documentos em qualquer parte, e em qualquer página da interface da aplicação. Assim que o faça, o Paperless-ngx irá começar a treinar os seus algoritmos de aprendizagem máquina. @@ -441,7 +453,7 @@ 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 - 178 + 180 A lista de documentos mostra-lhe todos os seus documentos, bem como permite filtrar e editar em massa. Existem três estilos de visualização: lista, cartões pequenos e/ou grandes. A lista de documentos atualmente abertos em edição é mostrada na barra lateral. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 As ferramentas de filtro permitem-lhe rapidamente encontrar documentos através de vários tipos de pesquisa, como por exemplo, datas, etiquetas, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Qualquer tipo de combinação de filtros pode ser gravada como uma 'forma de visualização' que poderá ser aplicada ao painel de controlo e/ou à barra lateral. @@ -465,7 +477,7 @@ 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 - 196 + 198 Etiquetas, correspondências, tipos de documentos e caminhos de armazenamento podem ser todos geridos através destas paginas. Podem também ser criadas através da edição de um documento. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Obrigado! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Existem <em>muitas mais</em> funcionalidades e informações não cobertas aqui, no entanto, isto deverá ser suficiente para cobrir o básico. Verifique a documentação ou visite o projeto no GitHub para saber mais, ou mesmo reportar erros. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Por último, e em nome de todos os contribuintes deste projeto suportado por uma comunidade, obrigado por utilizar o Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Descartar @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Mostrar janelas de confirmação - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Ao excluir um documento, sempre será pedido uma confirmação. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Pesquisa avançada Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ativar notas @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificações @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processamento de documentos @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Exibir notificações quando novos documentos forem detectados @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Exibir notificações quando o processamento de um documento concluir com sucesso @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Mostrar notificações quando o processamento de um documento falhar @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Não mostrar notificações no dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Isso esconderá todas as mensagens sobre o status de processamento de documentos no painel de controle. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Mostrar um aviso quando fechar visualizações gravadas com modificações por guardar @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Padrão @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nenhuma vista gravada definida. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Visualização "" apagada. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 As configurações foram guardadas com sucesso. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Configurações atualizadas com sucesso. O recarregamento da página é necessário para aplicar algumas alterações. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarregar agora @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Erro ao gravar as configurações no servidor. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ falhou + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirmar eliminação + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Esta operação não pode ser revertida. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Esta operação não pode ser revertida. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentação @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondentes @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 Github @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 está disponível. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Clique para ver. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 O Paperless-ngx pode verificar automaticamente por atualizações @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Como é que isto funciona? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Atualização disponível @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Pesquisa avançada + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirmar + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Página + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Página - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtrar documentos com este + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Adicionar etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrar documentos com estas Etiquetas - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Mostrar tudo + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrar por correspondente + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrar por tipo de documento + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrar por caminho de armazenamento + View Preview @@ -5729,11 +6023,19 @@ Caracteres no total + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Outros @@ -5888,8 +6190,8 @@ Baixar original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Repetir OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalhes @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de série de arquivamento @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data de criação @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Conteúdo @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data de modificação @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data de adição @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nome do ficheiro @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nome original do ficheiro @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Tamanho do ficheiro original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo mime original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Checksum MD5 do arquivo @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Tamanho do arquivo @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadados do documento original @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadados do documento arquivado @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pré-Visualizar @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Guardar & próximo @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Gravar e fechar @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introduzir Palavra-Passe @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Ocurreu um erro ao carregar o conteúdo: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Erro ao obter os metadados @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Erro ao obter sugestões. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Documento guardado com sucesso. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Erro ao gravar documento - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirmar eliminação + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Tem a certeza que quer apagar o documento ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Os ficheiros deste documento serão excluídos permanentemente. Esta operação não pode ser revertida. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Apagar documento + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Confirmar a repetição do OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Esta operação irá refazer permanentemente o OCR para este documento. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - A repetição do OCR irá acontecer em segundo plano. Feche e reabra, ou recarregue este documento depois da operação estar terminada para visualizar o novo conteúdo. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirmar eliminação - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Esta operação irá apagar permanentemente o(s) documento(s) selecionado(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Apagar documento(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Esta operação irá refazer o OCR permanentemente para documento(s) selecionado(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrar por correspondente - Filter by tag @@ -6970,40 +7288,8 @@ Ver notas - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notas - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrar por tipo de documento - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrar por caminho de armazenamento - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Criado: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondente @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondentes @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Última utilização @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Tem a certeza que quer eliminar a correspondência ""? diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 1c6c2cb81..1ed68b1fa 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Documentul a fost adăugat în sistem. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nu s-a putut adăuga : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Documentul este procesat de către sistem. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Anterior @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Următor @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Sfârșit @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Tabloul de bord poate fi folosit pentru a afișa vizualizările salvate, cum ar fi un 'Inbox'. Aceste setări sunt găsite în Setările > Vizualizări salvate după ce aţi creat unele. @@ -433,7 +445,7 @@ 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 - 173 + 175 Drag-and-drop documente aici pentru a începe încărcarea sau plasarea lor în folderul de consum. De asemenea, puteți trage și plasa documente oriunde pe toate celelalte pagini ale aplicației web. Odată ce faceți acest lucru, sistemul va începe să își instruiască algoritmii de învățare a mașinilor. @@ -441,7 +453,7 @@ 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 - 178 + 180 Lista de documente afișează toate documentele și permite atât filtrarea, cât și editarea în grup. Există trei stiluri de vizualizare diferite: listă, carduri mici și carduri mari. O listă de documente deschise în prezent pentru editare este afișată în bara laterală. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Instrumentele de filtrare vă permit să găsiți rapid documente folosind diverse căutări, date, etichete, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Orice combinație de filtre poate fi salvată ca o 'vizualizare' care poate fi afișată apoi pe tabloul de bord și/sau pe bara laterală. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tag-uri, corespondenți, tipuri de documente și căi de stocare pot fi gestionate toate folosind aceste pagini. De asemenea, pot fi create din editarea documentului. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Verificați setările pentru diferite modificări ale aplicației web și comutați setările pentru vizualizările salvate. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Mulțumesc! :plided_hands: @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 În cele din urmă, în numele fiecărui colaborator la acest proiect sprijinit de comunitate, vă mulţumim pentru că ați folosit Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Renunță @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Afișare dialoguri de confirmare - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Ștergerea documentelor va necesita întotdeauna confirmare. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Căutare avansată Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificări @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesarea documentelor @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Arată notificări atunci când sunt detectate documente noi @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Arată notificări atunci când procesarea documentului se termină cu succes @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Arată notificări atunci când procesarea documentului eșuează @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Ascunde notificările pe tabloul de bord @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Această setare va opri mesajele despre procesarea documentelor pe tabloul de bord. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nu sunt definite vizualizări. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vizualizarea "" a fost ștearsă. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirmă ștergerea + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Această operațiune este ireversibilă. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Această operațiune este ireversibilă. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentație @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Corespondenți @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipuri de documente @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Căi de stocare @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 este disponibilă. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Click pentru a vizualiza. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Sistemul poate verifica automat actualizările @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Cum funcţionează? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Actualizare disponibilă @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Căutare avansată + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirmă + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Pagina + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Pagina - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Adaugă etichetă + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Arată tot + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrează dupa corespondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Descarcă originalul - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalii @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Număr serial în arhivă @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data creării @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Conținut @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data ultimei modificări @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data adăugării @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Numele fișierului media @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5 original @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dimensiunea fișierului original @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tip MIME original @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 arhivă @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Mărimea arhivei @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadatele documentului original @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadatele documentului arhivat @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Salvează și continuă @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirmă ștergerea + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Sunteţi sigur că doriţi să ştergeţi documentul ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Șterge document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Confirmați stergerea - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - document(e) selectat(e) vor fi șterse permanent. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Șterge document(e) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrează dupa corespondent - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - S-a creat: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corespondenți @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Sunteți sigur că doriți să ștergeți corespondentul ""? diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 6ade0ebb8..0a3af6cc0 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Документ был добавлен в paperless. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Невозможно добавить : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Документ обрабатывается в Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Предыдущий @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Следующий @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Конец @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Панель инструментов может быть использована для отображения сохраненных представлений, таких как «Входящие». Это можно настроить в разделе Настройки > Представления после того, как вы создадите их. @@ -433,7 +445,7 @@ 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 - 173 + 175 Перетащите сюда документы, чтобы начать загрузку, или поместите их в папку потребления. Вы также можете перетаскивать документы в любое место на других страницах приложения. Как только вы это сделаете, Paperless-ngx начнет тренировать свои алгоритмы машинного обучения. @@ -441,7 +453,7 @@ 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 - 178 + 180 Список документов отображает все ваши документы и позволяет фильтровать их, а также производить массовое редактирование. Есть три различных стиля просмотра: список, маленькие карты и большие карты. Список открытых для редактирования документов показан в боковой панели. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Инструменты фильтрации позволяют быстро находить документы, используя различные поисковые запросы, даты, теги и прочее. @@ -457,7 +469,7 @@ 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 - 191 + 193 Любая комбинация фильтров может быть сохранена как «представление», которое затем может быть отображено на панели инструментов и/или в боковой панели. @@ -465,7 +477,7 @@ 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 - 196 + 198 Теги, корреспонденты, типы документов и пути хранения можно редактировать с помощью этих страниц. Они также могут быть созданы из страницы редактирования документа. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Автоматизации дают вам больше контроля над обработкой документов. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Просматривайте различные настройки приложения и настраивайте сохранённые представления. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Спасибо! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Есть <em>множество</em> других функций и возможностей, которые мы не рассмотрели, но этого должно быть достаточно для начала. Посмотрите документацию или посетите проект на GitHub, чтобы узнать больше или сообщить о проблемах. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx! @@ -549,36 +561,6 @@ Глобальные параметры конфигурации приложения, которые применяются к <strong>каждому<strong> пользователю данной установки Paperless-ngx. Параметры также могут быть заданы с помощью переменных окружения или конфигурационного файла, но значение, указанное здесь, всегда будет иметь приоритет. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Отменить @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Показывать диалоги подтверждения - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Удаление документов всегда будет требовать подтверждения. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - Global search + Глобальный поиск - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Расширенный поиск Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Включить заметки @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Права по умолчанию @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Настройки применяются к этой учетной записи пользователя для объектов (метки, правила почты и т. д.) созданные через веб-интерфейс @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Владелец по умолчанию @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Разрешения на просмотр по умолчанию @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Разрешения на редактирование по умолчанию @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Уведомления @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обработка документа @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показывать уведомления при обнаружении новых документов @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показывать уведомления, когда обработка документа успешна @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показывать уведомления, когда обработка документа не удалась @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Спрятать уведомления на главной @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Это отключит все сообщения о статусе обработки документов на главной. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показывать предупреждение при закрытии сохраненных видов с несохраненными изменениями @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,55 +1693,55 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 - Display as + Отображать как Table src/app/components/admin/settings/settings.component.html - 369 + 385 - Table + Таблица Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 - Small Cards + Маленькие карточки Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 - Large Cards + Большие карточки Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html 17 - Show + Показать Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 По умолчанию @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Нет сохраненных представлений. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Сохраненное представление "" удалено. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Настройки успешно сохранены. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Настройки успешно сохранены. Для применения некоторых изменений необходимо перезагрузить. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перезагрузить @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Ошибка при сохранении настроек на сервере. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ неудачно + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Подтвердите удаление + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Эту операцию нельзя отменить. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Эта операция окончательно удалит учетную запись пользователя. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Эту операцию нельзя отменить. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Документация @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Корреспонденты @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Типы документов @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Директория хранения @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 доступно. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Нажмите для просмотра. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx может автоматически проверять наличие обновлений @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Как это работает? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Доступно обновление @@ -2901,37 +3095,29 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Расширенный поиск + Поиск Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 - Open + Открыть Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,15 +3153,15 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 - No results + Нет результатов Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,31 +3209,31 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 - Users + Пользователи Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 - Groups + Группы Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 - Custom fields + Пользовательские поля Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,19 +3249,19 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 - Workflows + Рабочие процессы Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,50 +3351,18 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Подтвердить - - 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 - - - Note that only PDFs will be included. - - src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 - - 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 - 35 - - Note that only PDFs will be rotated. - Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 11 @@ -3221,6 +3379,10 @@ of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 13 @@ -3231,6 +3393,62 @@ of + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + + + Documents: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 9 + + Документы: + + + 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 + + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 + 34 + + 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. + Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Фильтровать документы с этим + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Открыть ссылку + No documents found @@ -4977,6 +5223,14 @@ Добавить тег + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Фильтровать документы с этими этикетами - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Открыть ссылку - What's this? @@ -5665,6 +5911,54 @@ Показать всё + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Отфильтровать по корреспонденту + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Фильтр по типу документа + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Фильтр по пути хранения + View Preview @@ -5729,11 +6023,19 @@ Всего символов + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Прочее @@ -5888,8 +6190,8 @@ Скачать оригинал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторить распознавание + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Предыдущий @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Детали @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Архивный номер (АН) @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата создания @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Содержимое @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата изменения @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата добавления @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Имя файла @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Исходное имя файла @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригинальная MD5 сумма @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Размер оригинального файла @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригинальный MIME тип @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 сумма архива @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Размер архива @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Метаданные оригинального документа @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метаданные архивного документа @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Предпросмотр @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Примечания @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Сохранить & следующий @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Сохранить & закрыть @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Введите пароль @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Произошла ошибка при загрузке контента: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Обнаружены изменения документа @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 Версия этого документа в вашем браузере появляется старше существующей версии. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Сохранение документа здесь может привести к перезаписи внесенных изменений. Чтобы восстановить существующую версию, отмените изменения или закройте документ. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Хорошо @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Ошибка при получении метаданных @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Ошибка при получении предложений. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Документ успешно сохранён. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Ошибка при сохранении документа - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Подтвердите удаление + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Вы действительно хотите удалить документ ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Удалить документ + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Ошибка удаления документа - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Подтверждение повторного распознавания - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Это действие перезапишет результаты распознавания текста для этого документа. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Операция повторного распознавания начнется в фоновом режиме. Закройте и повторно откройте или перезагрузите этот документ после завершения операции, чтобы увидеть новое содержимое. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Ошибка при выполнении операции @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Вместить страницу @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Подтвердите удаление - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Эта операция навсегда удалит выбранных документов. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Удалить документ(ы) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Эта операция повторит распознавание для выбранного(ых) документа(ов). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Отфильтровать по корреспонденту - Filter by tag @@ -6970,40 +7288,8 @@ Просмотреть заметки - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Заметки - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Фильтр по типу документа - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Фильтр по пути хранения - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Создано: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 корреспондент @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 корреспонденты @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Последний использованный @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Вы действительно хотите удалить этого корреспондента ""? diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index c38dabc49..a7adc5a45 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -273,19 +273,31 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 - Document was added to Paperless-ngx. + Dokument bol pridaný do paperless. Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nepodarilo sa pridať : @@ -305,15 +317,15 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 - Document is being processed by Paperless-ngx. + Dokument je spracovávaný v paperless. Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Predchádzajúci @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Ďalší @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Koniec @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Hlavný panel je možné využiť na zobrazenie uložených zobrazení, ako napríklad "Doručená pošta". Ich nastavenia je možné nájsť v Nastavenia > Uložené zobrazenia hneď po ich vytvorení. @@ -433,7 +445,7 @@ 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 - 173 + 175 Potiahnutím na toto miesto vložte dokumenty, ktoré chcete nahrať alebo ich umiestnite do sledovaného adresára. Vložiť dokumenty môžete taktiež ich potiahnutím na ľubovoľnú stránku webovej aplikácie. Po ich vložení na ne Paperless-ngx aplikuje svoje ML-algoritmy. @@ -441,7 +453,7 @@ 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 - 178 + 180 Zoznam súborov zobrazuje všetky vaše dokumenty a umožňuje ich filtráciu, či hromadné úpravy. Má tri rôzne štýly zobrazenia: zoznam, malé dlaždice a veľké dlaždice. Zoznam súborov aktuálne otvorený na úpravy je zobrazený na bočnom paneli. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Nástroje filtrovania vám umožňujú rýchlo nájsť dokumenty na základe rôznych textových reťazcov, dátumov, štítkov, atď. @@ -457,7 +469,7 @@ 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 - 191 + 193 Kombinácie filtrov je možné uložiť ako "zobrazenie", ktoré môže byť zobrazené na hlavnom a/alebo bočnom paneli. @@ -465,7 +477,7 @@ 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 - 196 + 198 Prostredníctvom týchto stránok môžete spravovať štítky, adresátov, typy dokumentov a cesty k úložiskám. Môžete ich taktiež vytvárať v zobrazení pri úprave dokumentu. @@ -473,27 +485,27 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html 4 - Manage e-mail accounts and rules for automatically importing documents. + Správa emailových účtov a pravidiel pre automatické importovanie dokumentov. Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 - Workflows give you more control over the document pipeline. + Pracovné postupy ti dávajú viac kontroly nad automatizovaným spracovaním dokumentov. 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,15 +517,15 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 - Check out the settings for various tweaks to the web app and toggle settings for saved views. + Vyskúšajte rôzne nastavenia pre vzhľad webovej aplikácie, uložené zobrazenia alebo si nastavte sledovanie e-mailovej schránky. Thank you! 🙏 src/app/app.component.ts - 236 + 238 Vďaka! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Je ešte <em>množstvo</em> ďalších funkcií a informácií, ktoré tu nie sú zdokumentované, ale aktuálny prehľad by vám mal postačovať na to, aby ste mohli začať. Ak chcete vedieť viac alebo chcete nahlásiť chybu, zájdite na GitHub stránku projektu. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Nakoniec vám v mene všetkých prispievateľov tohto komunitou podporovaného projektu ďakujeme za využívanie Paperless-ngx! @@ -539,7 +551,7 @@ src/app/components/admin/config/config.component.html 2 - Application Configuration + Nastavenie aplikácie 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. @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Zahodiť @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Zobrazovať potvrdzovacie okná - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Odstránenie dokumentov vždy vyžaduje potvrdenie. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Rozšírené vyhľadávanie Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Povoliť poznámky @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Upozornenia @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Spracovanie dokumentu @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Zobraziť upozornenie keď je detekovaný nový dokument @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Zobraziť upozornenie keď sa dokončí spracovanie dokumentu @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Zobraziť upozornenie keď spracovanie dokumentu zlyhá @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Nezobrazovať upozornenia na hlavnej obrazovke @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Táto možnosť prestane zobrazovať upozornenia pri otvorenej hlavnej obrazovke. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Zobraziť upozornenie pri zatváraní pohľadu bez uloženia zmien @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Predvolené @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nie su uložené žiadne pohľady. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Uložený pohľad "" odstránený. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Nastavenia boli úspešne uložené. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Nastavenia boli úspešne uložené. Aby sa prejavili zmeny, je potrebné znova načítať webstránku. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Načítať @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Chyba pri ukladaní nastavení na server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ neúspešné + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Potvrdiť vymazanie + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Túto akciu nie je možné vrátiť. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Táto operácia trvalo odstráni používateľský účet. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Túto akciu nie je možné vrátiť. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentácia @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korešpondenti @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 je dostupný. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klikni pre zobrazenie. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx môže automaticky kontrolovať aktualizácie @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Ako to funguje? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Aktualizácia je k dispozícii @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Rozšírené vyhľadávanie + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potvrdiť + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Strana + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Strana - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtrovať dokumenty pomocou + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Pridať štítok + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrovať dokumenty s týmito štítkami - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Zobraziť všetko + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrovať podľa odosielateľa + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrovať podľa typu dokumentu + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrovať podľa cesty k úložisku + View Preview @@ -5729,11 +6023,19 @@ Počet znakov + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Ostatné @@ -5888,8 +6190,8 @@ Stiahnuť originál - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Zopakovať OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Predchádzajúci @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Sériové číslo archívu @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Vytvorené @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Obsah @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Dátum úpravy @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dátum pridania @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Názov súboru médií @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originál - názov @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originál - MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originál - veľkosť @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Pôvodný MIME typ @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archív - MD5 @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archív - veľkosť @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadáta originálu @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadáta archívu @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Náhľad @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Uložiť & nasledujúci @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Uložiť & zatvoriť @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Zadajte Heslo @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Vyskytla sa chyba počas nahrávania obsahu: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Chyba pri získavaní metadát @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Chyba pri získavaní odporúčaní. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument bol úspešne uložený. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Chyba pri ukladaní dokumentu - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Potvrdiť vymazanie + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Naozaj si želáte vymazať dokument ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Súbory tohto dokumentu budú trvalo odstránené. Túto akciu nie je možné vrátiť. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Zmazať dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Potvrdiť opakované OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Táto akcia vykoná opakované OCR dokumentu a natrvalo zmaže pôvodné. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Akcia opakovaného OCR sa spustí na pozadí. Zavrite a otvorte alebo znovu načítajte dokument po skončení akcia, ak chcete zobraziť nový obsah. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Potvrdiť odstránenie - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Táto akcia trvale odstráni vybrané dokumenty. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Odstrániť dokumenty + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Táto akcia vykoná opakované OCR pre vybrané dokumenty. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrovať podľa odosielateľa - Filter by tag @@ -6970,40 +7288,8 @@ Zobraziť poznámky - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Poznámky - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrovať podľa typu dokumentu - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrovať podľa cesty k úložisku - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Vytvorený: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korešpondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korešpondenti @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Naposledy použité @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Naozaj chcete vymazať korešpondenta""? diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index e0667184b..d1a0a9ef3 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument je bil dodan v Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Ni bilo mogoče dodati : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokument je v postopku obdelave. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Nazaj @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Naslednji @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Konec @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Nadzorno ploščo lahko uporabite za prikaz shranjenih pogledov, na primer "Prejeto". Te nastavitve so na voljo v razdelku Nastavitve > Shranjeni pogledi, ko jih nekaj ustvarite. @@ -433,7 +445,7 @@ 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 - 173 + 175 Če želite začeti nalagati dokumente, jih povlecite in spustite sem ali jih postavite v zajemalno mapo. Dokumente lahko povlečete in spustite tudi kjer koli na vseh drugih straneh spletne aplikacije. Ko to storite, bo program Paperless-ngx začel trenirati svoje algoritme strojnega učenja. @@ -441,7 +453,7 @@ 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 - 178 + 180 Seznam dokumentov prikazuje vse vaše dokumente in omogoča filtriranje ter skupinsko urejanje. Na voljo so trije različni slogi prikaza: seznam, majhne kartice in velike kartice. Seznam dokumentov, ki so trenutno odprti za urejanje, je prikazan v stranski vrstici. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Orodja za filtriranje omogočajo hitro iskanje dokumentov z uporabo različnih iskanj, datumov, oznak itd. @@ -457,7 +469,7 @@ 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 - 191 + 193 Katero koli kombinacijo filtrov lahko shranite kot "pogled", ki ga lahko nato prikažete na nadzorni plošči in/ali v stranski vrstici. @@ -465,7 +477,7 @@ 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 - 196 + 198 Na teh straneh lahko upravljate oznake, korespondente, vrste dokumentov in poti shranjevanja. Ustvarite jih lahko tudi v pogledu za urejanje dokumentov. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Preverite nastavitve za različne prilagoditve spletne aplikacije in preklopite nastavitve za shranjene poglede. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Hvala! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Na voljo je še <em>veliko</em> več funkcij in informacij, ki jih tukaj nismo opisali, vendar boste s tem lahko začeli. Če želite izvedeti več ali prijaviti težave, si oglejte dokumentacijo in obiščite projekt na GitHubu. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Za konec se vam v imenu vseh sodelujočih pri tem projektu, ki ga podpira skupnost, zahvaljujemo, da uporabljate Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Zavrzi @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Pokaži potrditvena okna - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Brisanje dokumentov bo vedno zahtevalo potrditev. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Napredno iskanje Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Vklopi zapiske @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Privzeta dovoljenja @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Nastavitve veljajo za ta uporabniški račun za predmete (oznake, e-poštna pravila itd.), ustvarjene prek spletnega uporabniškega vmesnika @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Privzeti lastnik @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Privzeta dovoljenja za vpogled @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Privzeta dovoljenja za urejanje @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Obvestila @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Obdelava dokumentov @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Pokaži obvestila, ko so zaznani novi dokumenti @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Pokaži obvestila, ko se obdelava dokumenta uspešno zaključi @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Pokaži obvestila, ko obdelava dokumenta ne uspe @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Preprečite obvestila na pregledni strani @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 S tem bodo na plošči prekinjena vsa sporočila o stanju obdelave dokumentov. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Pokaži opozorilo pri zapiranju pogledov z neshranjenimi spremembami @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Privzeto @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ni določenih shranjenih pogledov. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Shranjen pogled "" je izbrisan. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Nastavitve uspešno shranjene. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Nastavitve so bile uspešno shranjene. Za uveljavitev nekaterih sprememb je potreben ponovni zagon. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ponovno zaženi @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Napaka pri shranjevanju nastavitev na strežnik. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ neuspešno + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Potrdi brisanje + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Te operacije ni mogoče razveljaviti. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Ta operacija bo trajno izbrisala ta uporabniški račun. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Te operacije ni mogoče razveljaviti. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentacija @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Dopisniki @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Vrste dokumentov @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Poti do shramb @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 je na voljo. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klikni za ogled. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx lahko samodejno preveri za posodobitve @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Kako to deluje? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Posodobitev na voljo @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Napredno iskanje + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potrdi + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Stran + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Stran - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtriraj dokumente s tem + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Odpri povezavo + No documents found @@ -4977,6 +5223,14 @@ Dodaj oznako + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtriraj dokumente s temi oznakami - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Odpri povezavo - What's this? @@ -5665,6 +5911,54 @@ Prikaži vse + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtriraj po dopisnikih + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtriraj po vrsti dokumenta + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtriraj po poti shrambe + View Preview @@ -5729,11 +6023,19 @@ Skupaj znakov + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Ostalo @@ -5888,8 +6190,8 @@ Prenesi izvirnik - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ponovno naredi OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prejšnji @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arhivska serijska številka @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum nastanka @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Vsebina @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum spremembe @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum vnosa @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Ime medijske datoteke @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Izvirno ime datoteke @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Izvirni MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Izvirna velikost datoteke @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Izvirna mime vrsta @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhiviran MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Velikost arhivske datoteke @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Izvirni metapodatki dokumenta @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arhivirani metapodatki dokumenta @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Predogled @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Shrani & naslednjo @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Shrani & zapri @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Vnesi geslo @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Napaka pri nalaganju vsebine: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 V redu @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Napaka pri pridobivanju metapodatkov @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Napaka pri pridobivanju priporočil. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument uspešno shranjen. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Napaka pri shranjevanju dokumenta - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Potrdi brisanje + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Ali res želite izbrisati dokument ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Datoteke za ta dokument bodo trajno izbrisane. Te operacije ni mogoče razveljaviti. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Izbriši dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Napaka pri brisanju dokumenta - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Potrdi ponovno izdelavo OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Ta izbira bo permanentno izvedla ponovni OCR na tem dokumentu. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Operacija 'Ponovi OCR' se bo začela v ozadju. Po končani operaciji zaprite in ponovno odprite ali naložite ta dokument, da si ogledate novo vsebino. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Napaka pri izvajanju operacije @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Potrdi izbris - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Ta operacija bo trajno izbrisala izbrane dokumente. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Izbriši dokument(e) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Ta operacija bo trajno obnovila OCR za izbrane dokumente. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtriraj po dopisnikih - Filter by tag @@ -6970,40 +7288,8 @@ Pokaži zapiske - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Opombe - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtriraj po vrsti dokumenta - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtriraj po poti shrambe - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Ustvarjeno: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 dopisnik @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 dopisniki @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Nazadnje uporabljen @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Ali res želite izbrisati dopisnika ""? diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index c570f749d..1d74b8951 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Dokument je dodat u Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Nije moguće dodati : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Dokument obrađuje Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prethodni @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Sledeći @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Kraj @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Kontrolna tabla se može koristiti za prikazivanje sačuvanih pogleda, kao što je 'Inbox'. Kada kreirate neke poglede ta podešavanja će se nalazati pod Podešavanja > Sačuvani pogledi. @@ -433,7 +445,7 @@ 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 - 173 + 175 Prevucite i otpustite dokumente ovde da biste započeli otpremanje ili ih stavite u folder za konzumiranje. Takođe možete da prevučete i otpustite dokumente bilo gde na svim drugim stranicama veb aplikacije. Kada to učinite, Paperless-ngx će početi da trenira svoje algoritme za mašinsko učenje. @@ -441,7 +453,7 @@ 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 - 178 + 180 Lista dokumenata prikazuje sve vaše dokumente i omogućava filtriranje kao i grupno uređivanje. Postoje tri različita stila prikaza: lista, male kartice i velike kartice. Na bočnoj traci je prikazana lista dokumenata koji su trenutno otvoreni za uređivanje. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Alati za filtriranje vam omogućavaju da brzo pronađete dokumente koristeći različite pretrage, datume, oznake itd. @@ -457,7 +469,7 @@ 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 - 191 + 193 Bilo koja kombinacija filtera se može sačuvati kao 'pogled' koji se zatim može prikazati na kontrolnoj tabli i/ili bočnoj traci. @@ -465,7 +477,7 @@ 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 - 196 + 198 Oznake, korespodenti, tipovi dokumenata i putanje skladištenja svi se mogu se uređivati pomoću ovih stranica. Takođe se mogu kreirati iz prikaza za uređivanje dokumenta. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Tokovi vam daju više kontrole nad cevovodom dokumenata. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Proverite podešavanja za različita podešavanja veb aplikacije i uključite podešavanja za sačuvane prikaze. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Hvala vam! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Ima <em>tona</em> više funkcija i informacija koje ovde nismo pokrili, ali ovo bi trebalo da vas pokrene. Pogledajte dokumentaciju ili posetite projekat na GitHub-u da biste saznali više ili prijavili probleme. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx! @@ -547,37 +559,7 @@ 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. - - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - + Globalna konfiguracija koje se primjenjuju na <strong>svakog</strong> korisnika ove instalacije Paperless-ngx. Opcije se također mogu postaviti pomoću varijabli okruženja ili konfiguracijske datoteke, ali će ova vrijednost ovdje uvijek imati prednost. Read the documentation about this setting @@ -585,7 +567,7 @@ src/app/components/admin/config/config.component.html 25 - Read the documentation about this setting + Pročitajte dokumentaciju o ovoj postavci Enable @@ -593,7 +575,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + Uključiti Discard @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Odbaci @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -677,7 +659,7 @@ src/app/components/admin/config/config.component.ts 81 - Error retrieving config + Greška prilikom preuzimanja konfiguracije Invalid JSON @@ -685,7 +667,7 @@ src/app/components/admin/config/config.component.ts 107 - Invalid JSON + Nepravilan JSON Configuration updated @@ -693,7 +675,7 @@ src/app/components/admin/config/config.component.ts 151 - Configuration updated + Konfiguracija je ažurirana An error occurred updating configuration @@ -701,7 +683,7 @@ src/app/components/admin/config/config.component.ts 156 - An error occurred updating configuration + Došlo je do greške prilikom ažuriranja konfiguracije File successfully updated @@ -709,7 +691,7 @@ src/app/components/admin/config/config.component.ts 178 - File successfully updated + Datoteka je uspješno ažurirana An error occurred uploading file @@ -717,7 +699,7 @@ src/app/components/admin/config/config.component.ts 183 - An error occurred uploading file + Došlo je do greške prilikom otpremanja datoteke Logs @@ -741,7 +723,7 @@ src/app/components/admin/logs/logs.component.html 4 - Review the log files for the application and for email checking. + Pregledajte logove za aplikaciju i za provjeru e-pošte. Auto refresh @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -837,7 +823,7 @@ src/app/components/admin/settings/settings.component.html 4 - Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>. + Opcije za prilagođavanje izgleda, obavještenja, sačuvanih prikaza i tako dalje. Postavke se primjenjuju <strong>samo na trenutnog korisnika</strong>. Start tour @@ -857,7 +843,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Status sistema Open Django Admin @@ -1073,7 +1059,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Uređivanje dokumenata Automatically remove inbox tag(s) on save @@ -1081,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + Automatski uklonite oznaku(e) prijemnog sandučeta prilikom spremanja Bulk editing @@ -1099,14 +1085,6 @@ Prikaži dijaloge za potvrdu - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Brisanje dokumenata će uvek tražiti potvrdu. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - Global search + Globalna pretraga - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Nemojte uključivati napredne rezultate pretraživanja + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Potpune veze za pretragu do + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Pretraga naslova i sadržaja + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Napredna pretraga Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Omogući beleške @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Podrazumevane dozvole @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Podešavanja se primenjuju na ovaj korisnički nalog za objekte (Oznake, Pravila pošte, itd.) kreirane preko veb korisničkog interfejsa @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Podrazumevani vlasnik @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Podrazumevane dozvole za prikaz @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Podrazumevane dozvole za uređivanje @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Obaveštenja @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesiranje dokumenata @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Prikaži obaveštenja kada se otkriju novi dokumenti @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Prikaži obaveštenja kada se obrada dokumenta uspešno završi @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Prikaži obaveštenja kada obrada dokumenta ne uspe @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Poništi obaveštenja na kontrolnoj tabli @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Ovo će potisnuti sve poruke o statusu obrade dokumenta na kontrolnoj tabli. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Prikaži upozorenje kada se zatvara sačuvani pogled sa nesačuvanim izmenama @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,63 +1685,63 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 - Documents page size + Veličina dokumenata Display as src/app/components/admin/settings/settings.component.html - 367 + 383 - Display as + Prikaži kao Table src/app/components/admin/settings/settings.component.html - 369 + 385 - Table + Tabela Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 - Small Cards + Male Kartice Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 - Large Cards + Velike Kartice Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html 17 - Show + Prikaži Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Podrazumevano @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nema definisanih sačuvanih pogleda. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Sačuvan pogled "" je obrisan. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Podešavanja su uspešno sačuvana. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Podešavanja su uspešno sačuvana. Potrebno je ponovno učitavanje da biste primenili neke promene. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Sad ponovo učitaj @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Greška prilikom čuvanja podešavanja na serveru. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2121,7 +2159,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Neuspješno Complete @@ -2129,7 +2167,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Završeno Started @@ -2137,7 +2175,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Započeto Queued @@ -2145,7 +2183,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Planirano Dismiss selected @@ -2211,6 +2249,206 @@ neuspešno + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Potvrdi brisanje + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Ovu radnju nije moguće opozvati. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2233,7 +2471,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + Kreirajte, obrišite i uredite korisnike i grupe. Users @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Ova operacija će trajno obrisati ovaj korisnički nalog. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Ovu radnju nije moguće opozvati. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2601,7 +2795,7 @@ src/app/components/app-frame/app-frame.component.html 20 - by Paperless-ngx + od Paperless-ngx Logged in as @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentacija @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korespodenti @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Tipovi dokumenta @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Putanje skladišta @@ -2789,7 +2983,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + Procesi Mail @@ -2821,13 +3015,13 @@ src/app/components/app-frame/app-frame.component.html 237 - Configuration + Konfiguracija GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 je dostupno. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klik za prеglеd. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx može automatski da proveri da li postoje ažuriranja @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Kako ovo radi? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Dostupno jе ažuriranjе @@ -2901,45 +3095,37 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Napredna pretraga + Pretraga Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 - Open + Otvori Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 - Filter documents + Filtriraj dokumente Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,115 +3153,115 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 - No results + Nema rezultata Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 - Documents + Dokumenti Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 - Saved Views + Sačuvani Prikazi Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 - Tags + Oznake Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 - Correspondents + Dopisnici Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 - Document types + Vrste dokumenata Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 - Storage paths + Putanje za skladištenje Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 - Users + Korisnici Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 - Groups + Grupe Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 - Custom fields + Prilagođena polja Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 - Mail accounts + Nalozi elektronske pošte Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 - Mail rules + Pravila elektronske pošte Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 - Workflows + Procesi Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Potvrdi + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Strana + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Strana - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtriraj dokumenta po + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Otvori vezu + No documents found @@ -4977,6 +5223,14 @@ Dodaj oznaku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtriraj dokumenta sa ovom oznakom - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Otvori vezu - What's this? @@ -5665,6 +5911,54 @@ Prikaži sve + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtriraj po korespodentu + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtriraj po tipu dokumenta + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtriraj po putanji skladišta + View Preview @@ -5729,11 +6023,19 @@ Ukupno karaktera + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Ostalo @@ -5888,8 +6190,8 @@ Preuzmi original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ponovi OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prethodni @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalji @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arhivski serijski broj (ASN) @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum kreiranja @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Sadržaj @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum izmene @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum dodavanja @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Naziv fajla @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originalno ime fajla @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originalni MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originalna veličina fajla @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Originalni MIME tip @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhivni MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arhivna veličina fajla @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metapodaci originalnog dokumenta @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metapodaci arhivnog dokumenta @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pregled @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Sačuvaj & sledeći @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Sačuvaj i zatvori @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Unesite lozinku @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Greške se pojavila prilikom učitavanja sadržaja: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Greška pri preuzimanju metapodataka @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Greška pri preuzimanju predloga. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokument je uspešno sačuvan. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Greška prilikom čuvanja dokumenta - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Potvrdi brisanje + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Da li stvarno želite da obrišite dokument ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Fajlovi za ovaj dokument će biti trajno obrisani. Ova operacija se ne može opozvati. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Obriši dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Greška prilikom brisanja dokumenta - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Ponovi OCR potvrda - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Ova će operacija trajno ponoviti OCR za ovaj dokument. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Ponovna OCR operacija će početi u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što se operacija završi da biste videli novi sadržaj. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Greška prilikom izvršavanja operacije @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Uklopi stranu @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Potvrdi brisanje - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Ova radnja će trajno obrisati selektovan(a) dokument(a). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Obriši dokument(e) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Ova radnja će trajno ponoviti OCR za selektovan(a) dokument(a). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtriraj po korespodentu - Filter by tag @@ -6970,40 +7288,8 @@ Pregled beleški - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Beleške - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtriraj po tipu dokumenta - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtriraj po putanji skladišta - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Kreirano: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespodent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespodenti @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Poslednje korišćenje @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Da li stvarno želite da obrišete ovog korespodenta ""? diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 81ba76c30..ebbbd7192 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Kunde inte lägga till : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Föregående @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Nästa @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Avsluta @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Instrumentpanelen kan användas för att visa sparade vyer, till exempel en "Inkorg". Dessa inställningar finns under Inställningar > Sparade Vyer när du har skapat några. @@ -433,7 +445,7 @@ 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 - 173 + 175 Släpp dokument här för att börja ladda upp eller placera dem i konsumtionsmappen. Du kan också släppa dokument var som helst på alla andra sidor i webbappen. När du gör det kommer Paperless-ngx börja träna sina algoritmer för maskininlärning. @@ -441,7 +453,7 @@ 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 - 178 + 180 Dokumentlistan visar alla dina dokument och möjliggör filtrering samt massredigering. Det finns tre olika vystilar: lista, små kort och stora kort. En lista med dokument som för närvarande är öppna för redigering visas i sidofältet. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Med filtreringsverktygen kan du snabbt hitta dokument med hjälp av olika sökningar, datum, taggar osv. @@ -457,7 +469,7 @@ 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 - 191 + 193 En kombination av filter kan sparas som en "vy" som sedan kan visas på instrumentpanelen och/eller i sidofältet. @@ -465,7 +477,7 @@ 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 - 196 + 198 Taggar, korrespondenter, dokumenttyper och lagringsplatser kan alla hanteras med hjälp av dessa sidor. De kan också skapas från dokumentredigeringsvyn. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Tack! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Det finns <em>massor</em> av funktioner och information som vi inte täckte här, men detta bör ge dig hjälp på traven. Läs dokumentationen eller besök projektet på GitHub om du vill lära dig mer eller rapportera problem. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Avfärda @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Visa bekräftelsedialoger - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Radering av dokument kommer alltid att be om bekräftelse. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Avancerad sökning Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktivera anteckningar @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifieringar @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokument bearbetas @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Visa notifieringar när nya dokument upptäcks @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Visa notifieringar när dokumentbehandlingen är klar @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Visa aviseringar när dokumentbehandling misslyckas @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Förhindra aviseringar på instrumentpanelen @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Detta kommer att förhindra alla meddelanden om status för dokumenthantering på instrumentpanelen. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Visa varning när sparade vyer stängs med osparade ändringar @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Standard @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Inga sparade vyer har definierats. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Sparad vy "" borttagen. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Inställningarna sparades. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Inställningarna har sparats. Ladda om sidan för att tillämpa vissa ändringar. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ladda om @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Kunde inte spara inställningarna på servern. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ misslyckade + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Bekräfta borttagning + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Den här åtgärden kan inte ångras. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Denna åtgärd kommer att ta bort detta användarkonto permanent. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Den här åtgärden kan inte ångras. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokumentation @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Korrespondenter @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 är tillgänglig. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Klicka för att visa. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx kan automatiskt söka efter uppdateringar @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Hur fungerar detta? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Uppdatering tillgänglig @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Avancerad sökning + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Bekräfta + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Sida + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Sida - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filtrera dokument med denna + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Lägg till tagg + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filtrera dokument med dessa Taggar - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Visa alla + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filtrera på korrespondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filtrera efter dokumenttyp + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filtrera efter lagringsplatser + View Preview @@ -5729,11 +6023,19 @@ Totalt antal tecken + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Övrigt @@ -5888,8 +6190,8 @@ Ladda ner original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Gör om OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Föregående @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkivets serienummer @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum skapad @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Innehåll @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum ändrad @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum tillagd @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filnamn @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Ursprungligt filnamn @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5-kontrollsumma @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Ursprunglig filstorlek @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Ursprunglig mime-typ @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiv MD5-kontrollsumma @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkiv filstorlek @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Ursprungliga dokument metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkiverade dokument metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Förhandsgranska @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Spara & nästa @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Spara & stäng @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Ange lösenord @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Ett fel uppstod när innehållet laddades: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fel vid hämtning av metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fel vid hämtning av förslag. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Dokumentet har sparats. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Kunde inte spara dokumentet - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Bekräfta borttagning + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Vill du verkligen ta bort dokumentet ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Filerna för detta dokument kommer att raderas permanent. Den här åtgärden kan inte ångras. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Ta bort dokument + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Bekräfta upprepning av OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Den här åtgärden kommer permanent att göra om OCR läsningen för detta dokument. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Upprepning av OCR läsning kommer ske i bakgrunden. Stäng och öppna, eller ladda om detta dokument efter läsningen är klar, för att se den nya inläsningen. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Bekräfta borttagning - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Den här åtgärden kommer att permanent ta bort markerade dokument. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Ta bort dokument + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Den här åtgärden kommer permanent göra om OCR inläsningen för valda dokument. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filtrera på korrespondent - Filter by tag @@ -6970,40 +7288,8 @@ Visa anteckningar - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Anteckningar - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filtrera efter dokumenttyp - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filtrera efter lagringsplatser - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Skapad: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Senast använd @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Vill du verkligen ta bort korrespondenten ""? diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 2a062ed33..0432644b4 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Could not add : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 ก่อนหน้า @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 ต่อไป @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 สิ้นสุด @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 ขอบคุณ 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 ละทิ้ง @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Show confirmation dialogs - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Deleting documents will always ask for confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + ค้นหาขั้นสูง Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 เปิดใช้หมายเหตุ @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 การแจ้งเตือน @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 การประมวลผลเอกสาร @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when new documents are detected @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing completes successfully @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Show notifications when document processing fails @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 ค่าเริ่มต้น @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 โหลดใหม่เดี๋ยวนี้ @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ ล้มเหลว + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + ยืนยันการลบ + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + This operation cannot be undone. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - This operation cannot be undone. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 เอกสารอ้างอิง @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 ผู้เขียน @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 ใช้งานได้ @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 คลิกเพื่อดู @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 ระบบนี้ทำงานยังไง? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 มีการอัพเดท @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - ค้นหาขั้นสูง + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + ยืนยัน + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + หน้า + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - หน้า - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ เพิ่มแท็ก + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ แสดงทั้งหมด + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ ตัวอักษรทั้งหมด + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 อื่น ๆ @@ -5888,8 +6190,8 @@ ดาวน์โหลดต้นฉบับ - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR ใหม่ + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 ก่อนหน้า @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 รายละเอียด @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 รหัสการจัดเก็บถาวร @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 วันที่สร้าง @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 เนื้อหา @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 วันที่แก้ไข @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 วันที่เพิ่ม @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 ชื่อไฟล์สื่อ @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 ชื่อไฟล์ต้นฉบับ @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 ขนาดไฟล์เดิม @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 MIME Type ของไฟล์เดิม @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 checksum ของไฟล์เก็บถาวร @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 ขนาดไฟล์เก็บถาวร @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 ตัวอย่าง @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 บันทึก & ถัดไป @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 บันทึก & ปิด @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 กรอกรหัสผ่าน @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - ยืนยันการลบ + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - ลบเอกสาร + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 เกิดข้อผิดพลาดในการลบเอกสาร - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - ยืนยันให้ OCR ใหม่ - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - ยืนยันการลบ - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - ลบเอกสาร + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ ดูหมายเหตุ - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ผู้เขียน @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ผู้เขียน @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 ใช้งานล่าสุด @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 67a21d931..7fe4b8fcb 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 : 'i ekliyemiyorum @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Önceki @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Sonraki @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Son @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Gösterge paneli, 'Gelen Kutusu' gibi kayıtlı görünümleri göstermek için kullanılabilir. Bu ayarlar, bazılarını oluşturduktan sonra Ayarlar > Kaydedilmiş Görünümler altında bulunur. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Web uygulamasında çeşitli ince ayarlar için ayarlara göz atın ve kayıtlı görünümler için ayarları değiştirin. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Teşekkürler! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Son olarak, bu topluluk destekli projeye katkıda bulunan herkes adına, Paperless-ngx'i kullandığınız için teşekkür ederiz! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Gözardı et @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Onaylama iletişim kutuları göster - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Belgeleri silmek her zaman onay ister. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Gelişmiş arama Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notları etkinleştir @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Varsayılan İzinler @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Ayarlar, web kullanıcı arayüzü aracılığıyla oluşturulan nesneler (Etiketler, Posta Kuralları, vb.) için bu kullanıcı hesabına uygulanır @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Varsayılan Sahip @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Varsayılan Görüntüleme İzinleri @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Varsayılan Değiştirme İzinleri @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Bildirimler @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Belge işleme @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Yeni belge bulunduğunda bildirimi göster @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Belge işleme başarıyla tamamlandığında bildirimleri göster @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Belge işleme başarız tamamlandığında bildirimleri göster @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Kontrol panodaki bildirimleri bastır @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Bu, kontrol panodaki belge işleme durumuyla ilgili tüm iletileri bastırır. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Kaydedilmemiş değişikliklerle kayıtlı görünümleri kapatırken uyarı göster @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Varsayılan @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Kaydedilmiş görünüm tanımlanmadı. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 adlı görünüm silindi. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Ayarlar başarıyla kaydedildi. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Ayarlar başarıyla kaydedildi. Bazı değişiklikleri uygulamak için yenileme gereklidir. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Şimdi yenile @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Ayarlar sunucuda saklanırken hata oluştu. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Silmeyi onayla + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Bu işlem geri alınamaz. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Bu eylem kullanıcıyı kalıcı olarak silecek. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Bu işlem geri alınamaz. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Dokümantasyon @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Muhabirler @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Belge Türleri @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Depolama Yolları @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 Github @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is available. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Görüntülemek için tıklayın. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Bu nasıl çalışıyor? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Güncelleme mevcut @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Gelişmiş arama + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Onayla + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Sayfa + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Sayfa - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Etiket ekle + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Tümünü göster + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Muhabire göre filtrele + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Diğer @@ -5888,8 +6190,8 @@ Orijinal Dosyayı İndir - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Yeniden OCR (Optik Karakter Tanıma) yap + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Önceki @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Ayrıntılar @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arşiv seri numarası @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Oluşturma tarihi @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Içerik @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Değiştirilme tarihi @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Ekleme tarihi @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Medya dosya ismi @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Orjinal dosya adı @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Orijinal MD5 sağlama toplamı @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Orijinal dosya boyutu @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Orijinal mime türü @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arşiv MD5 sağlama toplamı @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arşiv dosya boyutu @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Orijinal belge meta verisi @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arşivlenen belge meta verileri @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Ön İzleme @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Kaydet & sonraki @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Parolayı girin @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Metaveri alınırken hata oluştu @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Önerileri getirirken hata oluştu. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Silmeyi onayla + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - "" olan belgeyi gerçekten silmek istiyormusunuz? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Bu belgeye ait dosyalar kalıcı olarak siliniecektir. Bu işlem geri alınamaz. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Belgeyi sil + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Silmeyi onaylayın - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Bu işlem, "" seçili belge(leri) kalıcı olarak silecektir. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Belge(yi/leri) sil + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Muhabire göre filtrele - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Oluşturulan: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ek yazar @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ek yazarlar @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 "" muhabirini gerçekten silmek istiyor musunuz? diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index f42529910..b5c91fe8b 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Документ було додано до Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Не вдалося додати : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Документ обробляється Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Назад @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Далі @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Закінчити @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Головна сторінка може використовуватися для показу збережених представлень, таких як "Вхідні". Ці параметри можуть бути знайдені у "Налаштування" > "Збережені представлення" після того, як ви їх створите. @@ -433,7 +445,7 @@ 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 - 173 + 175 Перетягніть сюди документи, щоб почати відвантаження, або покладіть їх в CONSUMPTION_DIR. Ви також можете перетягувати документи будь-де на усіх інших сторінках цього вебдодатку. Як тільки ви це зробите, Paperless-ngx автоматично почне тренування алгоритмів машинного навчання. @@ -441,7 +453,7 @@ 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 - 178 + 180 Список документів показує всі ваші документи, дозволяє їх фільтрацію, а також групове редагування. Є три різних стилі: список, плитка та детальний список. Відкриті для редагування документи показані у бічній панелі. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Інструменти фільтрації дозволяють швидко знаходити документи, використовуючи різні пошуки, дати, теги та інше. @@ -457,7 +469,7 @@ 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 - 191 + 193 Будь-яка комбінація фільтрів може бути збережена як представлення, яке може потім бути показане на головній сторінці або у бічній панелі. @@ -465,7 +477,7 @@ 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 - 196 + 198 Теги, кореспонденти, типи документів і шляхи зберігання можуть керуватися використовуючи ці сторінки. Вони також можуть бути створені з режиму редагування документа. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Робочі процеси дають вам більший контроль над конвеєром. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Перевірте цю сторінку для різних налаштувань вебдодатку. Тут також можна налаштувати збережені представлення та перевірку електронної пошти. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Дякуємо! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 Є ще <em>дуже багато</em> функціоналу та інформації, яку ми тут не розглядали, але це має допомогти вам почати. Перегляньте документацію, або відвідайте проєкт на GitHub, щоб дізнатися більше, або повідомити про проблеми. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Наостанок хочемо подякувати від імені кожного, хто підтримує Paperless-ngx, за використання цього проєкту! @@ -549,36 +561,6 @@ Параметри глобальної конфігурації програми, які застосовуються до <strong>кожного</strong> користувач цієї інсталяції Paperless-ngx. Параметри також можна встановити за допомогою змінних середовища або файлу конфігурації, але значення тут завжди матиме перевагу. - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Скасувати @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -857,7 +843,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Стан системи Open Django Admin @@ -1073,7 +1059,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Редактор документів Automatically remove inbox tag(s) on save @@ -1081,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + Автоматично прибирати теги вхідних повідомлень Bulk editing @@ -1099,14 +1085,6 @@ Показувати діалогові вікна з підтвердженням - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Видалення документів завжди запитуватиме підтвердження. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 - Global search + Глобальний пошук - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Не включати просунуті результати пошуку + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Повний пошук посилання на + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Пошук в заголовку і вмісту + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Розширений пошук Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Увімкнути нотатки @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Типові дозволи @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Налаштування застосовуються до цього облікового запису для об'єктів (Теги, Правила пошти, тощо), створених у вебінтерфейсі @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Власник за замовчуванням @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Дозволи перегляду за умовчанням @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Дозволи на редагування за замовчуванням @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Сповіщення @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обробка документа @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показувати сповіщення, коли виявлено нові документи @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показувати сповіщення після успішної обробки документа @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показувати сповіщення, коли не вдається обробити документ @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Заховати сповіщення на головній @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Це приховає усі повідомлення про статус обробки документа на головній сторінці. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показувати попередження під час закриття представлень з незбереженими змінами @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,63 +1685,63 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 - Documents page size + Розмір сторінки документів Display as src/app/components/admin/settings/settings.component.html - 367 + 383 - Display as + Відображати як Table src/app/components/admin/settings/settings.component.html - 369 + 385 - Table + Таблиця Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 - Small Cards + Маленькі карти Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 - Large Cards + Великі картки Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html 17 - Show + Показувати Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 За замовчуванням @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Немає збережених представлень. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Збережене представлення було "" видалено. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Налаштування успішно збережено. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Налаштування успішно збережені. Оновіть сторінку для застосування змін. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перезавантажити зараз @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Помилка при збереженні налаштувань на сервері. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ невдачі + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Підтвердьте видалення + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + Цю операцію неможливо скасувати. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ Ця операція остаточно видалить даний обліковий запис. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - Цю операцію неможливо скасувати. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Документація @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Кореспонденти @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Тип документу @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Шляхи зберігання @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 є доступним для оновлення. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Натисніть для перегляду. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx може автоматично перевіряти наявність оновлень @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Як це працює? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Доступне оновлення @@ -2901,45 +3095,37 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Розширений пошук + Пошук Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 - Open + Відкрити Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 - Filter documents + Фільтрувати документи Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,129 +3153,129 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 - No results + Нічого не знайдено Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 - Documents + Документи Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 - Saved Views + Vues sauvegardées Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 - Tags + Теги Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 - Correspondents + Кореспонденти Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 - Document types + Типи документів Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 - Storage paths + Шляхи зберігання Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 - Users + Користувачі Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 - Groups + Групи Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 - Custom fields + Власні поля Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 - Mail accounts + Поштові скриньки Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 - Mail rules + Правила пошти Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 - Workflows + Робочі процеси Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 - Successfully updated object. + Об'єкт успішно оновлено. Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 - Error occurred saving object. + Помилка при збереженні об’єкта. Clear @@ -3121,7 +3307,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + Ви впевнені? Confirmation @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,50 +3351,18 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Підтвердити - - 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 - - - Note that only PDFs will be included. - - src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 - - 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 - 35 - - Note that only PDFs will be rotated. - Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 11 @@ -3221,6 +3379,10 @@ of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 13 @@ -3229,7 +3391,63 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + з + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Сторінок для видалення + + + Documents: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 9 + + Документи: + + + Use metadata from: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 22 + + Використовувати метадані із: + + + Regenerate all metadata + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 24 + + Повторно створити всі метадані + + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 + 34 + + Зверніть увагу, що будуть включені тільки PDF. + + + Note that only PDFs will be rotated. + + src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html + 25 + + Зверніть увагу, що будуть включені тільки PDF. Add Split @@ -3237,7 +3455,15 @@ src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 28 - Add Split + Додати частину + + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split View @@ -3265,7 +3491,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + Пошук полів Create new field @@ -3273,7 +3499,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 21 - Create new field + Створити нове поле Saved field "". @@ -4189,7 +4415,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Admin + Адміністратор Access logs, Django backend @@ -4197,7 +4423,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Access logs, Django backend + Журнал доступу, Django backend Superuser @@ -4489,7 +4715,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - Remove tags + Вилучити позначки Remove all @@ -4521,7 +4747,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - Remove all + Видалити всі Remove correspondents @@ -4529,7 +4755,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - Remove correspondents + Видалити всіх кореспондентів Remove document types @@ -4537,7 +4763,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 228 - Remove document types + Видалити всі типи документів Remove storage paths @@ -4545,7 +4771,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 234 - Remove storage paths + Видалити всі шляхи зберігання Remove custom fields @@ -4553,7 +4779,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 240 - Remove custom fields + Вилучити власне поле Remove owners @@ -4868,6 +5094,26 @@ Фільтрувати документи за допомогою + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Відкрити посилання + No documents found @@ -4977,6 +5223,14 @@ Додати тег + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Фільтрувати документи за цими тегами - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Відкрити посилання - What's this? @@ -5665,6 +5911,54 @@ Показати всі + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Фільтр по кореспонденту + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Фільтрувати по типу документа + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Фільтрувати по шляху зберігання + View Preview @@ -5729,11 +6023,19 @@ Всього символів + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Інше @@ -5888,8 +6190,8 @@ Завантажити оригінал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторити OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Попередній @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Деталі @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Архівний серійний номер @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата створення @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Вміст @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата зміни @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата додавання @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Назва медіафайлу @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Оригінальна назва файлу @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригінальна контрольна сума MD5 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Оригінальний розмір файлу @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригінальний тип MIME @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Контрольна сума MD5 архіву @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Розмір архіву @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Метадані оригінального документа @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метадані архівованого документа @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Попередній перегляд @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Примітки @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Зберегти та перейти до наступного @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Зберегти та закрити @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Введіть пароль @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Під час завантаження вмісту сталася помилка: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Зміни документу виявлено @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 Версія цього документа виявилась старішою за чинну версію. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Збереження документа може перезаписати інші внесені зміни. Щоб відновити наявну версію, скасуйте зміни або закрийте документ. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Гаразд @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Помилка отримання метаданих @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Помилка при отриманні пропозицій. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Документ успішно збережено. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Помилка при збереженні документа - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Підтвердьте видалення + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Ви дійсно хочете видалити документ ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - Файли для цього документа будуть видалені назавжди. Цю операцію неможливо скасувати. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Видалити документ + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Помилка видалення документа - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Підтвердьте повторення OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Ця операція перезапише результат OCR для цього документа. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Повторна операція OCR розпочнеться у фоновому режимі. Для того, щоб побачити оновлений вміст перевідкрийте документ або перезавантажте сторінку з цим документом після того, як операція завершиться. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Помилка виконання операції @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Вмістити сторінку @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Підтвердьте видалення - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Ця операція остаточно видалить вибрані документи. + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Видалити документ(и) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - Ця операція перезапише результат OCR для вибраних документів. + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Фільтр по кореспонденту - Filter by tag @@ -6970,40 +7288,8 @@ Переглянути нотатки - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Нотатки - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Фільтрувати по типу документа - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Фільтрувати по шляху зберігання - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Створено: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 кореспондент @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 кореспонденти @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Востаннє використано @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Ви дійсно хочете видалити кореспондента ""? diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index f8f5fdc02..b1e39ec04 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Tài liệu đã được tải lên. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Không thể thêm : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Tài liệu đang được xử lý. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Trước @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Tiếp @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 Kết thúc @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 Trang dashboard có thể được sử dụng để hiển thị các chế độ xem đã lưu, chẳng hạn như 'Hộp thư đến'. Những cài đặt đó được tìm thấy trong Cài đặt > Đã lưu Chế độ xem sau khi bạn đã tạo. @@ -433,7 +445,7 @@ 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 - 173 + 175 Kéo và thả tài liệu vào đây để bắt đầu tải lên hoặc đặt chúng vào thư mục Consume. Bạn cũng có thể kéo và thả tài liệu ở bất kỳ đâu trên tất cả các trang khác của ứng dụng web. Sau khi bạn làm như vậy, hệ thống sẽ bắt đầu huấn luyện các thuật toán học máy. @@ -441,7 +453,7 @@ 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 - 178 + 180 Danh sách tài liệu hiển thị tất cả tài liệu của bạn và cho phép lọc cũng như chỉnh sửa hàng loạt. Có ba kiểu xem khác nhau: danh sách, thẻ nhỏ và thẻ lớn. Danh sách các tài liệu hiện đang mở để chỉnh sửa được hiển thị trên thanh bên. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 Các công cụ lọc cho phép bạn nhanh chóng tìm thấy tài liệu bằng cách sử dụng nhiều tìm kiếm, ngày tháng, thẻ, ... @@ -457,7 +469,7 @@ 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 - 191 + 193 Kết hợp các bộ lọc có thể được lưu dưới dạng 'chế độ xem', sau đó có thể được hiển thị trên dashboard và/hoặc thanh bên. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tất cả các thẻ, người gửi, loại tài liệu và đường dẫn lưu trữ đều có thể được quản lý bằng các trang này. Chúng cũng có thể được tạo từ chế độ xem chỉnh sửa tài liệu. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Kiểm tra cài đặt để biết các chỉnh sửa khác nhau đối với ứng dụng web và chuyển đổi cài đặt cho các chế độ xem đã lưu. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Cảm ơn. @@ -521,7 +533,7 @@ 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 - 238 + 240 Xem tài liệu hoặc truy cập dự án trên GitHub để tìm hiểu thêm hoặc báo cáo sự cố. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Cảm ơn bạn đã sử dụng hệ thống @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Discard @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Hiển thị hộp thoại xác nhận - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Yêu cầu xác nhận khi xóa tài liệu. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Advanced search Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Bật ghi chú @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Quyền hạn mặc định @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Cài đặt áp dụng cho tài khoản người dùng này đối với các đối tượng (Thẻ, Quy tắc thư, v.v.) được tạo thông qua giao diện người dùng web @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Quyền xem mặc định @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Quyền chỉnh sửa mặc định @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Thông báo @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Đang được xử lý tài liệu @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Hiển thị thông báo khi thấy có tài liệu mới @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Hiển thị thông báo khi quá trình xử lý tài liệu hoàn tất thành công @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Hiển thị thông báo khi xử lý tài liệu không thành công @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Chặn thông báo trên bảng dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 Điều này sẽ chặn tất cả thông báo về trạng thái xử lý tài liệu trên trang tổng quan. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Hiển thị cảnh báo khi đóng chế độ xem đã lưu với các thay đổi chưa được lưu @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Không có chế độ xem đã lưu nào được xác định @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Chế độ lưu "" đã được xóa. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Các thiết lập được lưu thành công @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Các thiết lập được lưu thành công. Tải lại để cập nhật thay đổi. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Tải lại ngay @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Lỗi trong quá trình lưu cài đặt lên máy chủ. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + This operation cannot be undone. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - This operation cannot be undone. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Tài liệu tham khảo @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Người biên tập @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Loại Tài liệu @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Đường dẫn lưu dữ liệu @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 đã có sẵn. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Nhấp để xem. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 Cách thức hoạt động? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Update available @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Advanced search + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Xác nhận + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Page + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Page - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Add tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Hiện tất cả + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Tổng kí tự + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Khác @@ -5888,8 +6190,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirm delete + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Delete document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Xác nhận lại OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - Xác nhận này sẽ làm lại vĩnh viễn OCR cho tài liệu này. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Thao tác Redo OCR sẽ bắt đầu ở chế độ nền. Đóng và mở lại hoặc tải lại tài liệu này sau khi thao tác hoàn tất để xem nội dung mới. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Lỗi thực hiện thao tác @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Delete confirm - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Delete document(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 5b26f00a3..555070e66 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 文档 被添加至 Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 无法添加 : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 文件 正在被 Paperless-ngx 处理中. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 上一个 @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 下一个 @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 结尾 @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 仪表盘可以用于显示保存的视图,例如收件箱。 一旦您创建了一些设置,就会在设置 > 保存的视图中找到这些设置。 @@ -433,7 +445,7 @@ 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 - 173 + 175 拖放文档到此处开始上传或将其放置在消费文件夹中。 您也可以在网页所有其他页面上随时拖放文档。一旦您这样做,Paperless ngx将开始培训它的机器学习算法。 @@ -441,7 +453,7 @@ 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 - 178 + 180 文档列表显示您所有的文档,允许过滤和批量编辑。 有三种不同的视图风格:列表、小卡和大卡片。目前打开编辑的文件列表显示在侧边栏中。 @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 过滤器允许您通过各种搜索、日期、 标签快速查找文档。 @@ -457,7 +469,7 @@ 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 - 191 + 193 筛选器的任何组合都可以保存为“视图”,然后显示在仪表盘和/或侧边栏上。 @@ -465,7 +477,7 @@ 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 - 196 + 198 标签、通讯员、文档类型和存储路径都可以通过这些页面进行管理。它们也可以从文档编辑视图中创建。 @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 工作流让您对文档处理过程有更多的控制。 @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 查看网页应用的各种调整设置并切换设置以保存视图。 @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 谢谢你!🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 这里有<em>大量</em>的其他功能和信息我们没有涉及,但这应该能帮你开始。查看文档或访问GitHub上的项目来了解更多信息或报告问题。 @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 最后,代表社区支持项目的每个贡献者,感谢您使用无纸版! @@ -549,36 +561,6 @@ 适用于 <strong>的全局应用程序配置选项。此安装的 Paperless-ngx 的每个</strong> 用户。 也可以使用环境变量或配置文件来设置选项,但此处的值总是优先。 - - - - - - src/app/components/admin/config/config.component.html - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 放弃 @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ 显示确认对话框 - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - 删除文档时总是需要确认。 - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + 高级搜索 Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 启用备注 @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 默认权限 @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 对于通过 Web 界面创建的对象 (标签、邮件规则等) 设置应用到此用户帐户 @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 默认所有者 @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 默认查看权限 @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 默认编辑权限 @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 通知 @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 文档处理 @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 检测到新文档时显示通知 @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 文件处理成功完成时显示通知 @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 文件处理失败时显示通知 @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 禁用在仪表盘上的通知 @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 这将禁止仪表盘上所有有关文件处理状态的消息。 @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 关闭未保存的视图时显示警告 @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 默认 @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 未定义保存的视图。 @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 保存的视图已删除。 @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 设置保存成功 @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 设置已成功保存。需要重新加载以应用某些更改。 @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 立即重载 @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 在服务器上存储设置时出错。 @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ 失败 + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + 确认删除 + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + 此操作无法撤消。 + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ 此操作将永久删除此用户帐户。 - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - 此操作无法撤消。 - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 帮助文档 @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 联系人 @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 文档类型 @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 保存路径 @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 可用 @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 点击查看 @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx 可以自动检查更新 @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 这是如何运作的? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 有可用更新 @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - 高级搜索 + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + 确认 + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + 页码 + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ 重新生成所有元数据 + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 请注意,仅包含PDF。 @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 请注意,只有PDF将被旋转. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - 页码 - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ 添加拆分 + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ 添加标签 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ 显示全部 + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + 按联系人过滤 + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + 按文档类型筛选 + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + 按存储路径筛选 + View Preview @@ -5729,11 +6023,19 @@ 字符总数 + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 其它 @@ -5888,8 +6190,8 @@ 下载原始文件 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - 重新 OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 上一个 @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 详细信息 @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 归档序列号 @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 创建日期 @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 内容 @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 修改日期 @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 日期已添加 @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 媒体文件名 @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 原文件名 @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 原始 MD5 校验和 @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 原始文件大小 @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 原始 mime 类型 @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 归档 MD5 校验和 @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 归档文件大小 @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 原始文档元数据 @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 归档文档元数据 @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 预览 @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 保存 & 下一个 @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 保存并关闭 @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 输入密码 @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 加载内容时出错: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 获取元数据时出错 @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 获取建议时出错。 @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 文档已成功保存。 @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 保存文档出错 - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - 确认删除 + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - 您真的想要删除文档 “” 吗? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - 此文档的文件将被永久删除。此操作无法撤消。 - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - 删除文档 + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 删除文档出错。 - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - 确定重新 OCR - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - 此操作将为此文档永久重做OCR。 - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - 重做OCR 操作将在后台开始。关闭并在操作完成后重新打开或重新加载此文档以查看新内容。 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 适应页面 @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - 删除确认 - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - 此操作将永久删除 个选定的文档。 + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - 删除文档 + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - 此操作将永久重新 OCR 个选定的文档。 + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - 按联系人过滤 - Filter by tag @@ -6970,40 +7288,8 @@ 查看备注 - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - 备注 - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - 按文档类型筛选 - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - 按存储路径筛选 - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - 创建: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 联系人 @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 联系人 @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 最后使用 @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 您真的想要删除联系人" "吗? diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 2cef4ff5d..846356d9e 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -273,11 +273,11 @@ Document was added to Paperless-ngx. src/app/app.component.ts - 83 + 85 src/app/app.component.ts - 92 + 94 Document was added to Paperless-ngx. @@ -285,7 +285,19 @@ Open document src/app/app.component.ts - 85 + 87 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 37 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 40 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 43 src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -297,7 +309,7 @@ Could not add : src/app/app.component.ts - 107 + 109 Could not add : @@ -305,7 +317,7 @@ Document is being processed by Paperless-ngx. src/app/app.component.ts - 122 + 124 Document is being processed by Paperless-ngx. @@ -313,7 +325,7 @@ Dashboard src/app/app.component.ts - 129 + 131 src/app/components/app-frame/app-frame.component.html @@ -333,7 +345,7 @@ Documents src/app/app.component.ts - 140 + 142 src/app/components/app-frame/app-frame.component.html @@ -369,7 +381,7 @@ Settings src/app/app.component.ts - 152 + 154 src/app/components/admin/settings/settings.component.html @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -397,7 +409,7 @@ Prev src/app/app.component.ts - 158 + 160 Prev @@ -405,11 +417,11 @@ Next src/app/app.component.ts - 159 + 161 src/app/components/document-detail/document-detail.component.html - 91 + 95 Next @@ -417,7 +429,7 @@ End src/app/app.component.ts - 160 + 162 End @@ -425,7 +437,7 @@ The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. src/app/app.component.ts - 166 + 168 The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -433,7 +445,7 @@ 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 - 173 + 175 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. @@ -441,7 +453,7 @@ 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 - 178 + 180 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. @@ -449,7 +461,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 185 + 187 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -457,7 +469,7 @@ 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 - 191 + 193 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -465,7 +477,7 @@ 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 - 196 + 198 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -473,7 +485,7 @@ Manage e-mail accounts and rules for automatically importing documents. src/app/app.component.ts - 204 + 206 src/app/components/manage/mail/mail.component.html @@ -485,7 +497,7 @@ Workflows give you more control over the document pipeline. src/app/app.component.ts - 212 + 214 Workflows give you more control over the document pipeline. @@ -493,7 +505,7 @@ 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 - 220 + 222 src/app/components/admin/tasks/tasks.component.html @@ -505,7 +517,7 @@ Check out the settings for various tweaks to the web app and toggle settings for saved views. src/app/app.component.ts - 228 + 230 Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -513,7 +525,7 @@ Thank you! 🙏 src/app/app.component.ts - 236 + 238 Thank you! 🙏 @@ -521,7 +533,7 @@ 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 - 238 + 240 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. @@ -529,7 +541,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 240 + 242 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -549,36 +561,6 @@ 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 - 14,15 - - - src/app/components/common/custom-field-display/custom-field-display.component.html - 32 - - - src/app/components/common/input/drag-drop-select/drag-drop-select.component.html - 12 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - src/app/components/document-history/document-history.component.html - 35 - - - Read the documentation about this setting @@ -603,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 333 + 337 Discard @@ -615,7 +597,7 @@ src/app/components/admin/settings/settings.component.html - 403 + 419 src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html @@ -663,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 325 + 329 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -767,12 +749,16 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html 23 + + src/app/components/admin/trash/trash.component.html + 45 + src/app/components/admin/users-groups/users-groups.component.html 92 @@ -803,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1099,14 +1085,6 @@ Show confirmation dialogs - - Deleting documents will always ask for confirmation. - - src/app/components/admin/settings/settings.component.html - 195 - - Deleting documents will always ask for confirmation. - Apply on close @@ -1123,23 +1101,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 92 + 104 Global search - - Search database only (do not include advanced search results) + + Do not include advanced search results src/app/components/admin/settings/settings.component.html 204 - Search database only (do not include advanced search results) + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 212 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 216 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 217 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 143 + + Advanced search Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1169,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1177,7 @@ Permissions src/app/components/admin/settings/settings.component.html - 220 + 236 src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html @@ -1183,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 301 + 305 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1223,7 +1233,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1241,7 @@ Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI src/app/components/admin/settings/settings.component.html - 227,229 + 243,245 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -1239,7 +1249,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1257,7 @@ Objects without an owner can be viewed and edited by all users src/app/components/admin/settings/settings.component.html - 238 + 254 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1259,7 +1269,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1277,11 @@ Users: src/app/components/admin/settings/settings.component.html - 248 + 264 src/app/components/admin/settings/settings.component.html - 275 + 291 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1303,11 +1313,11 @@ Groups: src/app/components/admin/settings/settings.component.html - 258 + 274 src/app/components/admin/settings/settings.component.html - 285 + 301 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1339,7 +1349,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1357,7 @@ Edit permissions also grant viewing permissions src/app/components/admin/settings/settings.component.html - 294 + 310 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -1367,7 +1377,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1385,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Document processing @@ -1383,7 +1393,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Show notifications when new documents are detected @@ -1391,7 +1401,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Show notifications when document processing completes successfully @@ -1399,7 +1409,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Show notifications when document processing fails @@ -1407,7 +1417,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1425,7 @@ This will suppress all messages about document processing status on the dashboard. src/app/components/admin/settings/settings.component.html - 312 + 328 This will suppress all messages about document processing status on the dashboard. @@ -1423,7 +1433,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1445,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Show warning when closing saved views with unsaved changes @@ -1443,7 +1453,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1465,7 @@ Show on dashboard src/app/components/admin/settings/settings.component.html - 343 + 359 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1467,7 +1477,7 @@ Show in sidebar src/app/components/admin/settings/settings.component.html - 347 + 363 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -1479,12 +1489,16 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html 42 + + src/app/components/admin/trash/trash.component.html + 37 + src/app/components/admin/users-groups/users-groups.component.html 23 @@ -1543,7 +1557,23 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 + + + src/app/components/admin/trash/trash.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 76 + + + src/app/components/admin/trash/trash.component.ts + 57 + + + src/app/components/admin/trash/trash.component.ts + 80 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1685,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1693,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1701,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1709,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1717,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1725,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1737,11 @@ Default src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-detail/document-detail.component.html - 113 + 117 Default @@ -1719,7 +1749,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1757,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1845,7 @@ Error retrieving users src/app/components/admin/settings/settings.component.ts - 189 + 192 src/app/components/admin/users-groups/users-groups.component.ts @@ -1827,7 +1857,7 @@ Error retrieving groups src/app/components/admin/settings/settings.component.ts - 208 + 211 src/app/components/admin/users-groups/users-groups.component.ts @@ -1839,7 +1869,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1877,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1885,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Settings were saved successfully. Reload is required to apply some changes. @@ -1863,7 +1893,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1901,7 @@ An error occurred while saving settings. src/app/components/admin/settings/settings.component.ts - 568 + 576 src/app/components/app-frame/app-frame.component.ts @@ -1883,7 +1913,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -1909,6 +1939,10 @@ src/app/components/admin/tasks/tasks.component.html 9 + + src/app/components/admin/trash/trash.component.html + 8 + src/app/components/manage/management-list/management-list.component.html 3 @@ -1933,6 +1967,10 @@ src/app/components/admin/tasks/tasks.component.html 36 + + src/app/components/admin/trash/trash.component.html + 35 + src/app/components/admin/users-groups/users-groups.component.html 21 @@ -2211,6 +2249,206 @@ failed + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 271 + + + src/app/components/app-frame/app-frame.component.html + 274 + + 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 + + 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 + 58 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 66 + + + src/app/components/admin/trash/trash.component.html + 73 + + Restore + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 89 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 53 + + + src/app/components/admin/trash/trash.component.ts + 74 + + + src/app/components/manage/management-list/management-list.component.ts + 203 + + + src/app/components/manage/management-list/management-list.component.ts + 320 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 54 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 55 + + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.ts + 166 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 73 + + + src/app/components/manage/mail/mail.component.ts + 114 + + + src/app/components/manage/mail/mail.component.ts + 173 + + + src/app/components/manage/management-list/management-list.component.ts + 322 + + + src/app/components/manage/workflows/workflows.component.ts + 97 + + This operation cannot be undone. + + + Document deleted + + src/app/components/admin/trash/trash.component.ts + 63 + + Document deleted + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 76 + + 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 + 77 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 87 + + Document(s) deleted + + + Document restored + + src/app/components/admin/trash/trash.component.ts + 97 + + Document restored + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 106 + + Document(s) restored + Users & Groups @@ -2299,20 +2537,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 51 + 59 src/app/components/app-frame/global-search/global-search.component.html - 68 + 76 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 53 - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 43 - src/app/components/document-list/document-card-large/document-card-large.component.html 57 @@ -2431,50 +2665,6 @@ This operation will permanently delete this user account. - - This operation cannot be undone. - - src/app/components/admin/users-groups/users-groups.component.ts - 116 - - - src/app/components/admin/users-groups/users-groups.component.ts - 166 - - - src/app/components/document-detail/document-detail.component.ts - 809 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 714 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 753 - - - src/app/components/manage/custom-fields/custom-fields.component.ts - 73 - - - src/app/components/manage/mail/mail.component.ts - 114 - - - src/app/components/manage/mail/mail.component.ts - 173 - - - src/app/components/manage/management-list/management-list.component.ts - 322 - - - src/app/components/manage/workflows/workflows.component.ts - 97 - - This operation cannot be undone. - Proceed @@ -2487,27 +2677,31 @@ src/app/components/document-detail/document-detail.component.ts - 811 + 823 src/app/components/document-detail/document-detail.component.ts - 1104 + 1114 src/app/components/document-detail/document-detail.component.ts - 1142 + 1152 + + + src/app/components/document-detail/document-detail.component.ts + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 755 + 758 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 788 + 791 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 807 + 810 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2635,11 +2829,11 @@ src/app/components/app-frame/app-frame.component.html - 272 + 279 src/app/components/app-frame/app-frame.component.html - 275 + 282 Documentation @@ -2683,7 +2877,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 66 + 72 Correspondents @@ -2703,7 +2897,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 58 + 64 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2735,7 +2929,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 74 + 80 Document Types @@ -2751,7 +2945,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html - 82 + 88 Storage Paths @@ -2827,7 +3021,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 282 + 289 GitHub @@ -2835,7 +3029,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 291,292 + 298,299 is available. @@ -2843,7 +3037,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 292 + 299 Click to view. @@ -2851,7 +3045,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 296 + 303 Paperless-ngx can automatically check for updates @@ -2859,7 +3053,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 303,305 + 310,312 How does this work? @@ -2867,7 +3061,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 316 + 323 Update available @@ -2901,29 +3095,21 @@ src/app/components/app-frame/global-search/global-search.component.html 8 - Search - - - Advanced search src/app/components/app-frame/global-search/global-search.component.html - 19 + 26 - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 143 - - Advanced search + Search Open src/app/components/app-frame/global-search/global-search.component.html - 45 + 53 src/app/components/app-frame/global-search/global-search.component.html - 48 + 56 Open @@ -2931,7 +3117,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 54 + 62 Filter documents @@ -2939,7 +3125,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 65 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +3153,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 79 + 87 No results @@ -2975,7 +3161,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 82 + 90 Documents @@ -2983,7 +3169,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 88 + 96 Saved Views @@ -2991,7 +3177,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 95 + 103 Tags @@ -2999,7 +3185,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 102 + 110 Correspondents @@ -3007,7 +3193,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 109 + 117 Document types @@ -3015,7 +3201,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 116 + 124 Storage paths @@ -3023,7 +3209,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 123 + 131 Users @@ -3031,7 +3217,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 130 + 138 Groups @@ -3039,7 +3225,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 137 + 145 Custom fields @@ -3047,7 +3233,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 144 + 152 Mail accounts @@ -3055,7 +3241,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 151 + 159 Mail rules @@ -3063,7 +3249,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 158 + 166 Workflows @@ -3071,11 +3257,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 168 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 206 + 231 Successfully updated object. @@ -3083,11 +3269,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 171 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 209 + 234 Error occurred saving object. @@ -3141,6 +3327,10 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 26 + + src/app/components/document-detail/document-detail.component.ts + 776 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts 401 @@ -3161,8 +3351,56 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 579 + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 712 + Confirm + + Page + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 11 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 11 + + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 11 + + Page + + + of + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 13 + + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 13 + + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + Pages to remove + + src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html + 16 + + Pages to remove + Documents: @@ -3187,11 +3425,19 @@ Regenerate all metadata + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + 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 - 30 + 34 Note that only PDFs will be included. @@ -3199,38 +3445,10 @@ Note that only PDFs will be rotated. src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html - 35 + 25 Note that only PDFs will be rotated. - - Page - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 11 - - - src/app/components/document-detail/document-detail.component.html - 5 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.html - 11 - - Page - - - of - - src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html - 13 - - - src/app/components/document-detail/document-detail.component.html - 7,8 - - of - Add Split @@ -3239,6 +3457,14 @@ Add Split + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + Delete original document after successful split + View @@ -4868,6 +5094,26 @@ Filter documents with this + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 30 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 31 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + No documents found @@ -4977,6 +5223,14 @@ Add tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5239,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5911,54 @@ Show all + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 275 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 57 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 79 + + + src/app/components/document-list/document-list.component.html + 310 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 85 + + + src/app/components/document-list/document-list.component.html + 317 + + Filter by storage path + View Preview @@ -5729,11 +6023,19 @@ Total characters + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 20 + + Current ASN + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts - 65 + 66 Other @@ -5888,8 +6190,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5898,7 +6200,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5932,15 +6234,23 @@ Rotate + + Delete page(s) + + src/app/components/document-detail/document-detail.component.html + 65 + + Delete page(s) + Close src/app/components/document-detail/document-detail.component.html - 85 + 89 src/app/components/document-detail/document-detail.component.ts - 1160 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5952,7 +6262,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5960,7 +6270,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5968,7 +6278,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -5992,7 +6302,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6000,7 +6310,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6008,7 +6318,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6036,7 +6346,7 @@ Document type src/app/components/document-detail/document-detail.component.html - 110 + 114 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6064,7 +6374,7 @@ Storage path src/app/components/document-detail/document-detail.component.html - 112 + 116 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6088,7 +6398,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6096,7 +6406,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6108,7 +6418,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6116,7 +6426,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6124,7 +6434,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6132,7 +6442,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6140,7 +6450,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6148,7 +6458,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6156,7 +6466,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6164,7 +6474,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6172,7 +6482,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6180,7 +6490,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6188,7 +6498,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6196,7 +6506,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6204,7 +6514,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6212,7 +6522,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6220,7 +6530,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6228,7 +6538,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6236,7 +6546,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6244,7 +6554,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6252,7 +6562,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6260,7 +6570,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 354 + 366 The version of this document in your browser session appears older than the existing version. @@ -6268,7 +6578,7 @@ 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 - 355 + 367 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -6276,7 +6586,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6284,7 +6594,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6292,7 +6602,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6300,7 +6610,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6312,7 +6622,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6320,7 +6630,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6328,7 +6638,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6336,11 +6646,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 678 + 690 src/app/components/document-detail/document-detail.component.ts - 692 + 704 Document saved successfully. @@ -6348,95 +6658,95 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 696 + 708 src/app/components/document-detail/document-detail.component.ts - 737 + 749 Error saving document - - Confirm delete + + Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 764 + 777 - - src/app/components/manage/management-list/management-list.component.ts - 203 - - - src/app/components/manage/management-list/management-list.component.ts - 320 - - Confirm delete + Do you really want to move the document "" to the trash? - - Do you really want to delete document ""? + + Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 765 + 778 - Do you really want to delete document ""? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 714 + + Documents can be restored prior to permanent deletion. - - The files for this document will be deleted permanently. This operation cannot be undone. + + Move to trash src/app/components/document-detail/document-detail.component.ts - 766 + 780 - The files for this document will be deleted permanently. This operation cannot be undone. - - - Delete document - src/app/components/document-detail/document-detail.component.ts - 768 + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 716 - Delete document + Move to trash Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm - - src/app/components/document-detail/document-detail.component.ts - 807 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 751 - - Redo OCR confirm - - - This operation will permanently redo OCR for this document. - - src/app/components/document-detail/document-detail.component.ts - 808 - - This operation will permanently redo OCR for this document. - - - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts 819 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 820 + + 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 + 821 + + The archive file will be re-generated with the current settings. + + + Reprocess operation 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 + 831 + + Reprocess operation 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 - 830 + 842 Error executing operation @@ -6444,7 +6754,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6452,7 +6762,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6460,7 +6770,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 This operation will split the selected document(s) into new documents. @@ -6468,7 +6778,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1129 Split operation will begin in the background. @@ -6476,7 +6786,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1138 Error executing split operation @@ -6484,11 +6794,11 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 784 + 787 Rotate confirm @@ -6496,27 +6806,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1151 This operation will permanently rotate the original version of the current document. - - This will alter the original copy. - - src/app/components/document-detail/document-detail.component.ts - 1141 - - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 786 - - This will alter the original copy. - Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1157 + 1167 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6524,10 +6822,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1179 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1191 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1192 + + This operation will permanently delete the selected pages from the original document. + + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + src/app/components/document-detail/document-detail.component.ts + 1207 + + Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. + + + Error executing delete pages operation + + src/app/components/document-detail/document-detail.component.ts + 1216 + + Error executing delete pages operation + No entries found. @@ -6874,51 +7204,51 @@ This operation will assign the custom fields and remove the custom fields on selected document(s). - - Delete confirm - - src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 712 - - Delete confirm - - - This operation will permanently delete selected document(s). + + Move selected document(s) to the trash? src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - This operation will permanently delete selected document(s). + Move selected document(s) to the trash? - - Delete document(s) + + This operation will permanently recreate the archive files for selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 716 + 755 - Delete document(s) + This operation will permanently recreate the archive files for selected document(s). - - This operation will permanently redo OCR 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 - 752 + 756 - This operation will permanently redo OCR for selected document(s). + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 785 + 788 This operation will permanently rotate the original version of document(s). + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 789 + + This will alter the original copy. + Merge confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 805 + 808 Merge confirm @@ -6926,7 +7256,7 @@ This operation will merge selected documents into a new document. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 806 + 809 This operation will merge selected documents into a new document. @@ -6934,22 +7264,10 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 825 Merged document will be queued for consumption. - - Filter by correspondent - - src/app/components/document-list/document-card-large/document-card-large.component.html - 20 - - - src/app/components/document-list/document-list.component.html - 275 - - Filter by correspondent - Filter by tag @@ -6970,40 +7288,8 @@ View notes - - Notes - - src/app/components/document-list/document-card-large/document-card-large.component.html - 75 - - Notes - - - Filter by document type - - src/app/components/document-list/document-card-large/document-card-large.component.html - 79 - - - src/app/components/document-list/document-list.component.html - 310 - - Filter by document type - - - Filter by storage path - - src/app/components/document-list/document-card-large/document-card-large.component.html - 85 - - - src/app/components/document-list/document-list.component.html - 317 - - Filter by storage path - - Created: + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 98,99 @@ -7016,7 +7302,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7670,7 +7956,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7678,7 +7964,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7686,7 +7972,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7694,7 +7980,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Do you really want to delete the correspondent ""? diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index 04b908720..412324142 100644 --- a/src-ui/src/styles.scss +++ b/src-ui/src/styles.scss @@ -259,6 +259,10 @@ a.btn-link:focus-visible, .ng-select-container .ng-value-container .ng-input { top: 7px; + + input { + min-width: 10px; + } } .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked { @@ -332,6 +336,14 @@ textarea, } } +@media(max-width: 768px) { + .input-group-sm .btn-sm { + // accommodate larger font size on mobile + padding-top: .35rem; + padding-bottom: .35rem; + } +} + .input-group .form-control-sm { // accommodate larger font size on mobile padding-top: .15rem; diff --git a/src/documents/barcodes.py b/src/documents/barcodes.py index 6fa9188b6..2e290a61b 100644 --- a/src/documents/barcodes.py +++ b/src/documents/barcodes.py @@ -107,7 +107,6 @@ class BarcodePlugin(ConsumeTaskPlugin): if settings.CONSUMER_ENABLE_BARCODES and ( separator_pages := self.get_separation_pages() ): - # We have pages to split against # Note this does NOT use the base_temp_dir, as that will be removed diff --git a/src/documents/bulk_edit.py b/src/documents/bulk_edit.py index 08965bb15..7733a8d68 100644 --- a/src/documents/bulk_edit.py +++ b/src/documents/bulk_edit.py @@ -4,7 +4,10 @@ import logging import os from typing import Optional +from celery import chain from celery import chord +from celery import group +from celery import shared_task from django.conf import settings from django.db.models import Q @@ -25,7 +28,6 @@ logger = logging.getLogger("paperless.bulk_edit") def set_correspondent(doc_ids: list[int], correspondent): - if correspondent: correspondent = Correspondent.objects.only("pk").get(id=correspondent) @@ -81,7 +83,6 @@ def set_document_type(doc_ids: list[int], document_type): def add_tag(doc_ids: list[int], tag: int): - qs = Document.objects.filter(Q(id__in=doc_ids) & ~Q(tags__id=tag)).only("pk") affected_docs = list(qs.values_list("pk", flat=True)) @@ -97,7 +98,6 @@ def add_tag(doc_ids: list[int], tag: int): def remove_tag(doc_ids: list[int], tag: int): - qs = Document.objects.filter(Q(id__in=doc_ids) & Q(tags__id=tag)).only("pk") affected_docs = list(qs.values_list("pk", flat=True)) @@ -156,6 +156,7 @@ def modify_custom_fields(doc_ids: list[int], add_custom_fields, remove_custom_fi return "OK" +@shared_task def delete(doc_ids: list[int]): Document.objects.filter(id__in=doc_ids).delete() @@ -168,7 +169,7 @@ def delete(doc_ids: list[int]): return "OK" -def redo_ocr(doc_ids: list[int]): +def reprocess(doc_ids: list[int]): for document_id in doc_ids: update_document_archive_file.delay( document_id=document_id, @@ -237,7 +238,11 @@ def rotate(doc_ids: list[int], degrees: int): return "OK" -def merge(doc_ids: list[int], metadata_document_id: Optional[int] = None): +def merge( + doc_ids: list[int], + metadata_document_id: Optional[int] = None, + delete_originals: bool = False, +): logger.info( f"Attempting to merge {len(doc_ids)} documents into a single document.", ) @@ -280,7 +285,8 @@ def merge(doc_ids: list[int], metadata_document_id: Optional[int] = None): overrides = DocumentMetadataOverrides() logger.info("Adding merged document to the task queue.") - consume_file.delay( + + consume_task = consume_file.s( ConsumableDocument( source=DocumentSource.ConsumeFolder, original_file=filepath, @@ -288,16 +294,26 @@ def merge(doc_ids: list[int], metadata_document_id: Optional[int] = None): overrides, ) + if delete_originals: + logger.info( + "Queueing removal of original documents after consumption of merged document", + ) + chain(consume_task, delete.si(affected_docs)).delay() + else: + consume_task.delay() + return "OK" -def split(doc_ids: list[int], pages: list[list[int]]): +def split(doc_ids: list[int], pages: list[list[int]], delete_originals: bool = False): logger.info( f"Attempting to split document {doc_ids[0]} into {len(pages)} documents", ) doc = Document.objects.get(id=doc_ids[0]) import pikepdf + consume_tasks = [] + try: with pikepdf.open(doc.source_path) as pdf: for idx, split_doc in enumerate(pages): @@ -317,14 +333,51 @@ def split(doc_ids: list[int], pages: list[list[int]]): logger.info( f"Adding split document with pages {split_doc} to the task queue.", ) - consume_file.delay( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=filepath, + consume_tasks.append( + consume_file.s( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=filepath, + ), + overrides, ), - overrides, ) + + if delete_originals: + logger.info( + "Queueing removal of original document after consumption of the split documents", + ) + chord(header=consume_tasks, body=delete.si([doc.id])).delay() + else: + group(consume_tasks).delay() + except Exception as e: logger.exception(f"Error splitting document {doc.id}: {e}") return "OK" + + +def delete_pages(doc_ids: list[int], pages: list[int]): + logger.info( + f"Attempting to delete pages {pages} from {len(doc_ids)} documents", + ) + doc = Document.objects.get(id=doc_ids[0]) + pages = sorted(pages) # sort pages to avoid index issues + import pikepdf + + try: + with pikepdf.open(doc.source_path, allow_overwriting_input=True) as pdf: + offset = 1 # pages are 1-indexed + for page_num in pages: + pdf.pages.remove(pdf.pages[page_num - offset]) + offset += 1 # remove() changes the index of the pages + pdf.remove_unreferenced_resources() + pdf.save() + doc.checksum = hashlib.md5(doc.source_path.read_bytes()).hexdigest() + doc.save() + update_document_archive_file.delay(document_id=doc.id) + logger.info(f"Deleted pages {pages} from document {doc.id}") + except Exception as e: + logger.exception(f"Error deleting pages from document {doc.id}: {e}") + + return "OK" diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 0d5514e2c..9447fb329 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -485,56 +485,65 @@ class ConsumerPlugin( Return the document object if it was successfully created. """ - self._send_progress( - 0, - 100, - ProgressStatusOptions.STARTED, - ConsumerStatusShortMessage.NEW_FILE, - ) + tempdir = None - # Make sure that preconditions for consuming the file are met. - - self.pre_check_file_exists() - self.pre_check_directories() - self.pre_check_duplicate() - self.pre_check_asn_value() - - self.log.info(f"Consuming {self.filename}") - - # For the actual work, copy the file into a tempdir - tempdir = tempfile.TemporaryDirectory( - prefix="paperless-ngx", - dir=settings.SCRATCH_DIR, - ) - self.working_copy = Path(tempdir.name) / Path(self.filename) - copy_file_with_basic_stats(self.input_doc.original_file, self.working_copy) - - # Determine the parser class. - - mime_type = magic.from_file(self.working_copy, mime=True) - - self.log.debug(f"Detected mime type: {mime_type}") - - # Based on the mime type, get the parser for that type - parser_class: Optional[type[DocumentParser]] = get_parser_class_for_mime_type( - mime_type, - ) - if not parser_class: - tempdir.cleanup() - self._fail( - ConsumerStatusShortMessage.UNSUPPORTED_TYPE, - f"Unsupported mime type {mime_type}", + try: + self._send_progress( + 0, + 100, + ProgressStatusOptions.STARTED, + ConsumerStatusShortMessage.NEW_FILE, ) - # Notify all listeners that we're going to do some work. + # Make sure that preconditions for consuming the file are met. - document_consumption_started.send( - sender=self.__class__, - filename=self.working_copy, - logging_group=self.logging_group, - ) + self.pre_check_file_exists() + self.pre_check_directories() + self.pre_check_duplicate() + self.pre_check_asn_value() - self.run_pre_consume_script() + self.log.info(f"Consuming {self.filename}") + + # For the actual work, copy the file into a tempdir + tempdir = tempfile.TemporaryDirectory( + prefix="paperless-ngx", + dir=settings.SCRATCH_DIR, + ) + self.working_copy = Path(tempdir.name) / Path(self.filename) + copy_file_with_basic_stats(self.input_doc.original_file, self.working_copy) + + # Determine the parser class. + + mime_type = magic.from_file(self.working_copy, mime=True) + + self.log.debug(f"Detected mime type: {mime_type}") + + # Based on the mime type, get the parser for that type + parser_class: Optional[type[DocumentParser]] = ( + get_parser_class_for_mime_type( + mime_type, + ) + ) + if not parser_class: + tempdir.cleanup() + self._fail( + ConsumerStatusShortMessage.UNSUPPORTED_TYPE, + f"Unsupported mime type {mime_type}", + ) + + # Notify all listeners that we're going to do some work. + + document_consumption_started.send( + sender=self.__class__, + filename=self.working_copy, + logging_group=self.logging_group, + ) + + self.run_pre_consume_script() + except: + if tempdir: + tempdir.cleanup() + raise def progress_callback(current_progress, max_progress): # pragma: no cover # recalculate progress to be within 20 and 80 @@ -593,6 +602,9 @@ class ConsumerPlugin( archive_path = document_parser.get_archive_path() except ParseError as e: + document_parser.cleanup() + if tempdir: + tempdir.cleanup() self._fail( str(e), f"Error occurred while consuming document {self.filename}: {e}", @@ -601,7 +613,8 @@ class ConsumerPlugin( ) except Exception as e: document_parser.cleanup() - tempdir.cleanup() + if tempdir: + tempdir.cleanup() self._fail( str(e), f"Unexpected error while consuming document {self.filename}: {e}", diff --git a/src/documents/context_processors.py b/src/documents/context_processors.py index 9f8dacfb3..91a7ce391 100644 --- a/src/documents/context_processors.py +++ b/src/documents/context_processors.py @@ -1,11 +1,28 @@ from django.conf import settings as django_settings +from paperless.config import GeneralConfig + def settings(request): + general_config = GeneralConfig() + + app_title = ( + django_settings.APP_TITLE + if general_config.app_title is None or len(general_config.app_title) == 0 + else general_config.app_title + ) + app_logo = ( + django_settings.APP_LOGO + if general_config.app_logo is None or len(general_config.app_logo) == 0 + else general_config.app_logo + ) + return { "EMAIL_ENABLED": django_settings.EMAIL_HOST != "localhost" or django_settings.EMAIL_HOST_USER != "", "DISABLE_REGULAR_LOGIN": django_settings.DISABLE_REGULAR_LOGIN, "ACCOUNT_ALLOW_SIGNUPS": django_settings.ACCOUNT_ALLOW_SIGNUPS, "domain": getattr(django_settings, "PAPERLESS_URL", request.get_host()), + "APP_TITLE": app_title, + "APP_LOGO": app_logo, } diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index 081dfb360..618c1a4e5 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -5,6 +5,7 @@ import shutil import tempfile import time from pathlib import Path +from typing import TYPE_CHECKING from typing import Optional import tqdm @@ -22,11 +23,15 @@ from filelock import FileLock from guardian.models import GroupObjectPermission from guardian.models import UserObjectPermission +if TYPE_CHECKING: + from django.db.models import QuerySet + if settings.AUDIT_LOG_ENABLED: from auditlog.models import LogEntry from documents.file_handling import delete_empty_directories from documents.file_handling import generate_filename +from documents.management.commands.mixins import CryptMixin from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -52,7 +57,7 @@ from paperless_mail.models import MailAccount from paperless_mail.models import MailRule -class Command(BaseCommand): +class Command(CryptMixin, BaseCommand): help = ( "Decrypt and rename all files in our collection into a given target " "directory. And include a manifest file containing document data for " @@ -147,6 +152,13 @@ class Command(BaseCommand): help="Sets the export zip file name", ) + parser.add_argument( + "--data-only", + default=False, + action="store_true", + help="If set, only the database will be imported, not files", + ) + parser.add_argument( "--no-progress-bar", default=False, @@ -154,18 +166,10 @@ class Command(BaseCommand): help="If set, the progress bar will not be shown", ) - def __init__(self, *args, **kwargs): - BaseCommand.__init__(self, *args, **kwargs) - self.target: Path = None - self.split_manifest = False - self.files_in_export_dir: set[Path] = set() - self.exported_files: list[Path] = [] - self.compare_checksums = False - self.use_filename_format = False - self.use_folder_prefix = False - self.delete = False - self.no_archive = False - self.no_thumbnail = False + parser.add_argument( + "--passphrase", + help="If provided, is used to encrypt sensitive data in the export", + ) def handle(self, *args, **options): self.target = Path(options["target"]).resolve() @@ -177,14 +181,18 @@ class Command(BaseCommand): self.no_archive: bool = options["no_archive"] self.no_thumbnail: bool = options["no_thumbnail"] self.zip_export: bool = options["zip"] + self.data_only: bool = options["data_only"] + self.no_progress_bar: bool = options["no_progress_bar"] + self.passphrase: Optional[str] = options.get("passphrase") + + self.files_in_export_dir: set[Path] = set() + self.exported_files: set[str] = set() # If zipping, save the original target for later and # get a temporary directory for the target instead temp_dir = None - self.original_target: Optional[Path] = None + self.original_target = self.target if self.zip_export: - self.original_target = self.target - settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True) temp_dir = tempfile.TemporaryDirectory( dir=settings.SCRATCH_DIR, @@ -202,12 +210,13 @@ class Command(BaseCommand): raise CommandError("That path doesn't appear to be writable") try: + # Prevent any ongoing changes in the documents with FileLock(settings.MEDIA_LOCK): - self.dump(options["no_progress_bar"]) + self.dump() # We've written everything to the temporary directory in this case, # now make an archive in the original target, with all files stored - if self.zip_export: + if self.zip_export and temp_dir is not None: shutil.make_archive( os.path.join( self.original_target, @@ -222,7 +231,7 @@ class Command(BaseCommand): if self.zip_export and temp_dir is not None: temp_dir.cleanup() - def dump(self, progress_bar_disable=False): + def dump(self): # 1. Take a snapshot of what files exist in the current export folder for x in self.target.glob("**/*"): if x.is_file(): @@ -230,115 +239,61 @@ class Command(BaseCommand): # 2. Create manifest, containing all correspondents, types, tags, storage paths # note, documents and ui_settings + manifest_key_to_object_query: dict[str, QuerySet] = { + "correspondents": Correspondent.objects.all(), + "tags": Tag.objects.all(), + "document_types": DocumentType.objects.all(), + "storage_paths": StoragePath.objects.all(), + "mail_accounts": MailAccount.objects.all(), + "mail_rules": MailRule.objects.all(), + "saved_views": SavedView.objects.all(), + "saved_view_filter_rules": SavedViewFilterRule.objects.all(), + "groups": Group.objects.all(), + "users": User.objects.exclude( + username__in=["consumer", "AnonymousUser"], + ).all(), + "ui_settings": UiSettings.objects.all(), + "content_types": ContentType.objects.all(), + "permissions": Permission.objects.all(), + "user_object_permissions": UserObjectPermission.objects.all(), + "group_object_permissions": GroupObjectPermission.objects.all(), + "workflow_triggers": WorkflowTrigger.objects.all(), + "workflow_actions": WorkflowAction.objects.all(), + "workflows": Workflow.objects.all(), + "custom_fields": CustomField.objects.all(), + "custom_field_instances": CustomFieldInstance.objects.all(), + "app_configs": ApplicationConfiguration.objects.all(), + "notes": Note.objects.all(), + "documents": Document.objects.order_by("id").all(), + } + + if settings.AUDIT_LOG_ENABLED: + manifest_key_to_object_query["log_entries"] = LogEntry.objects.all() + with transaction.atomic(): - manifest = json.loads( - serializers.serialize("json", Correspondent.objects.all()), - ) + manifest_dict = {} - manifest += json.loads(serializers.serialize("json", Tag.objects.all())) - - manifest += json.loads( - serializers.serialize("json", DocumentType.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", StoragePath.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", MailAccount.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", MailRule.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", SavedView.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", SavedViewFilterRule.objects.all()), - ) - - manifest += json.loads(serializers.serialize("json", Group.objects.all())) - - manifest += json.loads( - serializers.serialize( - "json", - User.objects.exclude(username__in=["consumer", "AnonymousUser"]), - ), - ) - - manifest += json.loads( - serializers.serialize("json", UiSettings.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", ContentType.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", Permission.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", UserObjectPermission.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", GroupObjectPermission.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", WorkflowTrigger.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", WorkflowAction.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", Workflow.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", CustomField.objects.all()), - ) - - manifest += json.loads( - serializers.serialize("json", ApplicationConfiguration.objects.all()), - ) - - if settings.AUDIT_LOG_ENABLED: - manifest += json.loads( - serializers.serialize("json", LogEntry.objects.all()), + # Build an overall manifest + for key in manifest_key_to_object_query: + manifest_dict[key] = json.loads( + serializers.serialize("json", manifest_key_to_object_query[key]), ) + self.encrypt_secret_fields(manifest_dict) + # These are treated specially and included in the per-document manifest # if that setting is enabled. Otherwise, they are just exported to the bulk # manifest - documents = Document.objects.order_by("id") - document_map: dict[int, Document] = {d.pk: d for d in documents} - document_manifest = json.loads(serializers.serialize("json", documents)) - - notes = json.loads( - serializers.serialize("json", Note.objects.all()), - ) - - custom_field_instances = json.loads( - serializers.serialize("json", CustomFieldInstance.objects.all()), - ) - if not self.split_manifest: - manifest += document_manifest - manifest += notes - manifest += custom_field_instances + document_map: dict[int, Document] = { + d.pk: d for d in manifest_key_to_object_query["documents"] + } + document_manifest = manifest_dict["documents"] # 3. Export files from each document for index, document_dict in tqdm.tqdm( enumerate(document_manifest), total=len(document_manifest), - disable=progress_bar_disable, + disable=self.no_progress_bar, ): # 3.1. store files unencrypted document_dict["fields"]["storage_type"] = Document.STORAGE_TYPE_UNENCRYPTED @@ -346,102 +301,39 @@ class Command(BaseCommand): document = document_map[document_dict["pk"]] # 3.2. generate a unique filename - filename_counter = 0 - while True: - if self.use_filename_format: - base_name = generate_filename( - document, - counter=filename_counter, - append_gpg=False, - ) - else: - base_name = document.get_public_filename(counter=filename_counter) - - if base_name not in self.exported_files: - self.exported_files.append(base_name) - break - else: - filename_counter += 1 + base_name = self.generate_base_name(document) # 3.3. write filenames into manifest - original_name = base_name - if self.use_folder_prefix: - original_name = os.path.join("originals", original_name) - original_target = (self.target / Path(original_name)).resolve() - document_dict[EXPORTER_FILE_NAME] = original_name - - if not self.no_thumbnail: - thumbnail_name = base_name + "-thumbnail.webp" - if self.use_folder_prefix: - thumbnail_name = os.path.join("thumbnails", thumbnail_name) - thumbnail_target = (self.target / Path(thumbnail_name)).resolve() - document_dict[EXPORTER_THUMBNAIL_NAME] = thumbnail_name - else: - thumbnail_target = None - - if not self.no_archive and document.has_archive_version: - archive_name = base_name + "-archive.pdf" - if self.use_folder_prefix: - archive_name = os.path.join("archive", archive_name) - archive_target = (self.target / Path(archive_name)).resolve() - document_dict[EXPORTER_ARCHIVE_NAME] = archive_name - else: - archive_target = None + original_target, thumbnail_target, archive_target = ( + self.generate_document_targets(document, base_name, document_dict) + ) # 3.4. write files to target folder - if document.storage_type == Document.STORAGE_TYPE_GPG: - t = int(time.mktime(document.created.timetuple())) - - original_target.parent.mkdir(parents=True, exist_ok=True) - with document.source_file as out_file: - original_target.write_bytes(GnuPG.decrypted(out_file)) - os.utime(original_target, times=(t, t)) - - if thumbnail_target: - thumbnail_target.parent.mkdir(parents=True, exist_ok=True) - with document.thumbnail_file as out_file: - thumbnail_target.write_bytes(GnuPG.decrypted(out_file)) - os.utime(thumbnail_target, times=(t, t)) - - if archive_target: - archive_target.parent.mkdir(parents=True, exist_ok=True) - with document.archive_path as out_file: - archive_target.write_bytes(GnuPG.decrypted(out_file)) - os.utime(archive_target, times=(t, t)) - else: - self.check_and_copy( - document.source_path, - document.checksum, + if not self.data_only: + self.copy_document_files( + document, original_target, + thumbnail_target, + archive_target, ) - if thumbnail_target: - self.check_and_copy(document.thumbnail_path, None, thumbnail_target) - - if archive_target: - self.check_and_copy( - document.archive_path, - document.archive_checksum, - archive_target, - ) - if self.split_manifest: - manifest_name = base_name + "-manifest.json" + manifest_name = Path(base_name + "-manifest.json") if self.use_folder_prefix: - manifest_name = os.path.join("json", manifest_name) - manifest_name = (self.target / Path(manifest_name)).resolve() + manifest_name = Path("json") / manifest_name + manifest_name = (self.target / manifest_name).resolve() manifest_name.parent.mkdir(parents=True, exist_ok=True) content = [document_manifest[index]] content += list( filter( lambda d: d["fields"]["document"] == document_dict["pk"], - notes, + manifest_dict["notes"], ), ) content += list( filter( lambda d: d["fields"]["document"] == document_dict["pk"], - custom_field_instances, + manifest_dict["custom_field_instances"], ), ) manifest_name.write_text( @@ -451,8 +343,17 @@ class Command(BaseCommand): if manifest_name in self.files_in_export_dir: self.files_in_export_dir.remove(manifest_name) - # 4.1 write manifest to target folder - manifest_path = (self.target / Path("manifest.json")).resolve() + # These were exported already + if self.split_manifest: + del manifest_dict["documents"] + del manifest_dict["notes"] + del manifest_dict["custom_field_instances"] + + # 4.1 write primary manifest to target folder + manifest = [] + for key in manifest_dict: + manifest.extend(manifest_dict[key]) + manifest_path = (self.target / "manifest.json").resolve() manifest_path.write_text( json.dumps(manifest, indent=2, ensure_ascii=False), encoding="utf-8", @@ -461,17 +362,25 @@ class Command(BaseCommand): self.files_in_export_dir.remove(manifest_path) # 4.2 write version information to target folder - version_path = (self.target / Path("version.json")).resolve() - version_path.write_text( + extra_metadata_path = (self.target / "metadata.json").resolve() + metadata: dict[str, str | int | dict[str, str | int]] = { + "version": version.__full_version_str__, + } + + # 4.2.1 If needed, write the crypto values into the metadata + # Django stores most of these in the field itself, we store them once here + if self.passphrase: + metadata.update(self.get_crypt_params()) + extra_metadata_path.write_text( json.dumps( - {"version": version.__full_version_str__}, + metadata, indent=2, ensure_ascii=False, ), encoding="utf-8", ) - if version_path in self.files_in_export_dir: - self.files_in_export_dir.remove(version_path) + if extra_metadata_path in self.files_in_export_dir: + self.files_in_export_dir.remove(extra_metadata_path) if self.delete: # 5. Remove files which we did not explicitly export in this run @@ -491,7 +400,127 @@ class Command(BaseCommand): else: item.unlink() - def check_and_copy(self, source, source_checksum, target: Path): + def generate_base_name(self, document: Document) -> str: + """ + Generates a unique name for the document, one which hasn't already been exported (or will be) + """ + filename_counter = 0 + while True: + if self.use_filename_format: + base_name = generate_filename( + document, + counter=filename_counter, + append_gpg=False, + ) + else: + base_name = document.get_public_filename(counter=filename_counter) + + if base_name not in self.exported_files: + self.exported_files.add(base_name) + break + else: + filename_counter += 1 + return base_name + + def generate_document_targets( + self, + document: Document, + base_name: str, + document_dict: dict, + ) -> tuple[Path, Optional[Path], Optional[Path]]: + """ + Generates the targets for a given document, including the original file, archive file and thumbnail (depending on settings). + """ + original_name = base_name + if self.use_folder_prefix: + original_name = os.path.join("originals", original_name) + original_target = (self.target / Path(original_name)).resolve() + document_dict[EXPORTER_FILE_NAME] = original_name + + if not self.no_thumbnail: + thumbnail_name = base_name + "-thumbnail.webp" + if self.use_folder_prefix: + thumbnail_name = os.path.join("thumbnails", thumbnail_name) + thumbnail_target = (self.target / Path(thumbnail_name)).resolve() + document_dict[EXPORTER_THUMBNAIL_NAME] = thumbnail_name + else: + thumbnail_target = None + + if not self.no_archive and document.has_archive_version: + archive_name = base_name + "-archive.pdf" + if self.use_folder_prefix: + archive_name = os.path.join("archive", archive_name) + archive_target = (self.target / Path(archive_name)).resolve() + document_dict[EXPORTER_ARCHIVE_NAME] = archive_name + else: + archive_target = None + + return original_target, thumbnail_target, archive_target + + def copy_document_files( + self, + document: Document, + original_target: Path, + thumbnail_target: Optional[Path], + archive_target: Optional[Path], + ) -> None: + """ + Copies files from the document storage location to the specified target location. + + If the document is encrypted, the files are decrypted before copying them to the target location. + """ + if document.storage_type == Document.STORAGE_TYPE_GPG: + t = int(time.mktime(document.created.timetuple())) + + original_target.parent.mkdir(parents=True, exist_ok=True) + with document.source_file as out_file: + original_target.write_bytes(GnuPG.decrypted(out_file)) + os.utime(original_target, times=(t, t)) + + if thumbnail_target: + thumbnail_target.parent.mkdir(parents=True, exist_ok=True) + with document.thumbnail_file as out_file: + thumbnail_target.write_bytes(GnuPG.decrypted(out_file)) + os.utime(thumbnail_target, times=(t, t)) + + if archive_target: + archive_target.parent.mkdir(parents=True, exist_ok=True) + if TYPE_CHECKING: + assert isinstance(document.archive_path, Path) + with document.archive_path as out_file: + archive_target.write_bytes(GnuPG.decrypted(out_file)) + os.utime(archive_target, times=(t, t)) + else: + self.check_and_copy( + document.source_path, + document.checksum, + original_target, + ) + + if thumbnail_target: + self.check_and_copy(document.thumbnail_path, None, thumbnail_target) + + if archive_target: + if TYPE_CHECKING: + assert isinstance(document.archive_path, Path) + self.check_and_copy( + document.archive_path, + document.archive_checksum, + archive_target, + ) + + def check_and_copy( + self, + source: Path, + source_checksum: Optional[str], + target: Path, + ): + """ + Copies the source to the target, if target doesn't exist or the target doesn't seem to match + the source attributes + """ + + target = target.resolve() if target in self.files_in_export_dir: self.files_in_export_dir.remove(target) @@ -515,3 +544,29 @@ class Command(BaseCommand): if perform_copy: target.parent.mkdir(parents=True, exist_ok=True) copy_file_with_basic_stats(source, target) + + def encrypt_secret_fields(self, manifest: dict) -> None: + """ + Encrypts certain fields in the export. Currently limited to the mail account password + """ + + if self.passphrase: + self.setup_crypto(passphrase=self.passphrase) + + for crypt_config in self.CRYPT_FIELDS: + exporter_key = crypt_config["exporter_key"] + crypt_fields = crypt_config["fields"] + for manifest_record in manifest[exporter_key]: + for field in crypt_fields: + manifest_record["fields"][field] = self.encrypt_string( + value=manifest_record["fields"][field], + ) + + elif MailAccount.objects.count() > 0: + self.stdout.write( + self.style.NOTICE( + "You have configured mail accounts, " + "but no passphrase was given. " + "Passwords will be in plaintext", + ), + ) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index dc0ac36fd..3535e1476 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -3,6 +3,7 @@ import logging import os from contextlib import contextmanager from pathlib import Path +from typing import Optional import tqdm from django.conf import settings @@ -21,6 +22,7 @@ from django.db.models.signals import post_save from filelock import FileLock from documents.file_handling import create_source_path_directory +from documents.management.commands.mixins import CryptMixin from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -30,6 +32,7 @@ from documents.models import Note from documents.models import Tag from documents.parsers import run_convert from documents.settings import EXPORTER_ARCHIVE_NAME +from documents.settings import EXPORTER_CRYPTO_SETTINGS_NAME from documents.settings import EXPORTER_FILE_NAME from documents.settings import EXPORTER_THUMBNAIL_NAME from documents.signals.handlers import update_filename_and_move_files @@ -49,7 +52,7 @@ def disable_signal(sig, receiver, sender): sig.connect(receiver=receiver, sender=sender) -class Command(BaseCommand): +class Command(CryptMixin, BaseCommand): help = ( "Using a manifest.json file, load the data from there, and import the " "documents it refers to." @@ -57,6 +60,7 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument("source") + parser.add_argument( "--no-progress-bar", default=False, @@ -64,101 +68,192 @@ class Command(BaseCommand): help="If set, the progress bar will not be shown", ) - def __init__(self, *args, **kwargs): - BaseCommand.__init__(self, *args, **kwargs) - self.source = None - self.manifest = None - self.version = None + parser.add_argument( + "--data-only", + default=False, + action="store_true", + help="If set, only the database will be exported, not files", + ) + + parser.add_argument( + "--passphrase", + help="If provided, is used to sensitive fields in the export", + ) def pre_check(self) -> None: """ - Runs some initial checks against the source directory, including looking for - common mistakes like having files still and users other than expected + Runs some initial checks against the state of the install and source, including: + - Does the target exist? + - Can we access the target? + - Does the target have a manifest file? + - Are there existing files in the document folders? + - Are there existing users or documents in the database? """ + def pre_check_maybe_not_empty(): + # Skip this check if operating only on the database + # We can expect data to exist in that case + if not self.data_only: + for document_dir in [settings.ORIGINALS_DIR, settings.ARCHIVE_DIR]: + if document_dir.exists() and document_dir.is_dir(): + for entry in document_dir.glob("**/*"): + if entry.is_dir(): + continue + self.stdout.write( + self.style.WARNING( + f"Found file {entry.relative_to(document_dir)}, this might indicate a non-empty installation", + ), + ) + break + # But existing users or other data still matters in a data only + if ( + User.objects.exclude(username__in=["consumer", "AnonymousUser"]).count() + != 0 + ): + self.stdout.write( + self.style.WARNING( + "Found existing user(s), this might indicate a non-empty installation", + ), + ) + if Document.objects.count() != 0: + self.stdout.write( + self.style.WARNING( + "Found existing documents(s), this might indicate a non-empty installation", + ), + ) + + def pre_check_manifest_exists(): + if not (self.source / "manifest.json").exists(): + raise CommandError( + "That directory doesn't appear to contain a manifest.json file.", + ) + if not self.source.exists(): raise CommandError("That path doesn't exist") if not os.access(self.source, os.R_OK): raise CommandError("That path doesn't appear to be readable") - for document_dir in [settings.ORIGINALS_DIR, settings.ARCHIVE_DIR]: - if document_dir.exists() and document_dir.is_dir(): - for entry in document_dir.glob("**/*"): - if entry.is_dir(): - continue - self.stdout.write( - self.style.WARNING( - f"Found file {entry.relative_to(document_dir)}, this might indicate a non-empty installation", - ), + pre_check_maybe_not_empty() + pre_check_manifest_exists() + + def load_manifest_files(self) -> None: + """ + Loads manifest data from the various JSON files for parsing and loading the database + """ + main_manifest_path = self.source / "manifest.json" + + with main_manifest_path.open() as infile: + self.manifest = json.load(infile) + self.manifest_paths.append(main_manifest_path) + + for file in Path(self.source).glob("**/*-manifest.json"): + with file.open() as infile: + self.manifest += json.load(infile) + self.manifest_paths.append(file) + + def load_metadata(self) -> None: + """ + Loads either just the version information or the version information and extra data + + Must account for the old style of export as well, with just version.json + """ + version_path = self.source / "version.json" + metadata_path = self.source / "metadata.json" + if not version_path.exists() and not metadata_path.exists(): + self.stdout.write( + self.style.NOTICE("No version.json or metadata.json file located"), + ) + return + + if metadata_path.exists(): + with metadata_path.open() as infile: + data = json.load(infile) + self.version = data["version"] + if not self.passphrase and EXPORTER_CRYPTO_SETTINGS_NAME in data: + raise CommandError( + "No passphrase was given, but this export contains encrypted fields", ) - break - if ( - User.objects.exclude(username__in=["consumer", "AnonymousUser"]).count() - != 0 - ): + elif EXPORTER_CRYPTO_SETTINGS_NAME in data: + self.load_crypt_params(data) + elif version_path.exists(): + with version_path.open() as infile: + self.version = json.load(infile)["version"] + + if self.version and self.version != version.__full_version_str__: self.stdout.write( self.style.WARNING( - "Found existing user(s), this might indicate a non-empty installation", - ), - ) - if Document.objects.count() != 0: - self.stdout.write( - self.style.WARNING( - "Found existing documents(s), this might indicate a non-empty installation", + "Version mismatch: " + f"Currently {version.__full_version_str__}," + f" importing {self.version}." + " Continuing, but import may fail.", ), ) + def load_data_to_database(self) -> None: + """ + As the name implies, loads data from the JSON file(s) into the database + """ + try: + with transaction.atomic(): + # delete these since pk can change, re-created from import + ContentType.objects.all().delete() + Permission.objects.all().delete() + for manifest_path in self.manifest_paths: + call_command("loaddata", manifest_path) + except (FieldDoesNotExist, DeserializationError, IntegrityError) as e: + self.stdout.write(self.style.ERROR("Database import failed")) + if ( + self.version is not None + and self.version != version.__full_version_str__ + ): # pragma: no cover + self.stdout.write( + self.style.ERROR( + "Version mismatch: " + f"Currently {version.__full_version_str__}," + f" importing {self.version}", + ), + ) + raise e + else: + self.stdout.write( + self.style.ERROR("No version information present"), + ) + raise e + def handle(self, *args, **options): logging.getLogger().handlers[0].level = logging.ERROR self.source = Path(options["source"]).resolve() + self.data_only: bool = options["data_only"] + self.no_progress_bar: bool = options["no_progress_bar"] + self.passphrase: str | None = options.get("passphrase") + self.version: Optional[str] = None + self.salt: Optional[str] = None + self.manifest_paths = [] + self.manifest = [] self.pre_check() - manifest_paths = [] + self.load_metadata() - main_manifest_path = self.source / "manifest.json" + self.load_manifest_files() - self._check_manifest_exists(main_manifest_path) + self.check_manifest_validity() - with main_manifest_path.open() as infile: - self.manifest = json.load(infile) - manifest_paths.append(main_manifest_path) + self.decrypt_secret_fields() - for file in Path(self.source).glob("**/*-manifest.json"): - with file.open() as infile: - self.manifest += json.load(infile) - manifest_paths.append(file) - - version_path = self.source / "version.json" - if version_path.exists(): - with version_path.open() as infile: - self.version = json.load(infile)["version"] - # Provide an initial warning if needed to the user - if self.version != version.__full_version_str__: - self.stdout.write( - self.style.WARNING( - "Version mismatch: " - f"Currently {version.__full_version_str__}," - f" importing {self.version}." - " Continuing, but import may fail.", - ), - ) - - else: - self.stdout.write(self.style.NOTICE("No version.json file located")) - - self._check_manifest_valid() - - with disable_signal( - post_save, - receiver=update_filename_and_move_files, - sender=Document, - ), disable_signal( - m2m_changed, - receiver=update_filename_and_move_files, - sender=Document.tags.through, + with ( + disable_signal( + post_save, + receiver=update_filename_and_move_files, + sender=Document, + ), + disable_signal( + m2m_changed, + receiver=update_filename_and_move_files, + sender=Document.tags.through, + ), ): if settings.AUDIT_LOG_ENABLED: auditlog.unregister(Document) @@ -170,97 +265,72 @@ class Command(BaseCommand): auditlog.unregister(CustomFieldInstance) # Fill up the database with whatever is in the manifest - try: - with transaction.atomic(): - # delete these since pk can change, re-created from import - ContentType.objects.all().delete() - Permission.objects.all().delete() - for manifest_path in manifest_paths: - call_command("loaddata", manifest_path) - except (FieldDoesNotExist, DeserializationError, IntegrityError) as e: - self.stdout.write(self.style.ERROR("Database import failed")) - if ( - self.version is not None - and self.version != version.__full_version_str__ - ): - self.stdout.write( - self.style.ERROR( - "Version mismatch: " - f"Currently {version.__full_version_str__}," - f" importing {self.version}", - ), - ) - raise e - else: - self.stdout.write( - self.style.ERROR("No version information present"), - ) - raise e + self.load_data_to_database() - self._import_files_from_manifest(options["no_progress_bar"]) + if not self.data_only: + self._import_files_from_manifest() + else: + self.stdout.write(self.style.NOTICE("Data only import completed")) self.stdout.write("Updating search index...") call_command( "document_index", "reindex", - no_progress_bar=options["no_progress_bar"], + no_progress_bar=self.no_progress_bar, ) - @staticmethod - def _check_manifest_exists(path: Path): - if not path.exists(): - raise CommandError( - "That directory doesn't appear to contain a manifest.json file.", - ) - - def _check_manifest_valid(self): + def check_manifest_validity(self): """ Attempts to verify the manifest is valid. Namely checking the files referred to exist and the files can be read from """ - self.stdout.write("Checking the manifest") - for record in self.manifest: - if record["model"] != "documents.document": - continue - if EXPORTER_FILE_NAME not in record: + def check_document_validity(document_record: dict): + if EXPORTER_FILE_NAME not in document_record: raise CommandError( "The manifest file contains a record which does not " "refer to an actual document file.", ) - doc_file = record[EXPORTER_FILE_NAME] - doc_path = self.source / doc_file + doc_file = document_record[EXPORTER_FILE_NAME] + doc_path: Path = self.source / doc_file if not doc_path.exists(): raise CommandError( f'The manifest file refers to "{doc_file}" which does not ' "appear to be in the source directory.", ) try: - with doc_path.open(mode="rb") as infile: - infile.read(1) + with doc_path.open(mode="rb"): + pass except Exception as e: raise CommandError( f"Failed to read from original file {doc_path}", ) from e - if EXPORTER_ARCHIVE_NAME in record: - archive_file = record[EXPORTER_ARCHIVE_NAME] - doc_archive_path = self.source / archive_file + if EXPORTER_ARCHIVE_NAME in document_record: + archive_file = document_record[EXPORTER_ARCHIVE_NAME] + doc_archive_path: Path = self.source / archive_file if not doc_archive_path.exists(): raise CommandError( f"The manifest file refers to {archive_file} which " f"does not appear to be in the source directory.", ) try: - with doc_archive_path.open(mode="rb") as infile: - infile.read(1) + with doc_archive_path.open(mode="rb"): + pass except Exception as e: raise CommandError( f"Failed to read from archive file {doc_archive_path}", ) from e - def _import_files_from_manifest(self, progress_bar_disable): + self.stdout.write("Checking the manifest") + for record in self.manifest: + # Only check if the document files exist if this is not data only + # We don't care about documents for a data only import + if not self.data_only and record["model"] == "documents.document": + check_document_validity(record) + + def _import_files_from_manifest(self): settings.ORIGINALS_DIR.mkdir(parents=True, exist_ok=True) settings.THUMBNAIL_DIR.mkdir(parents=True, exist_ok=True) settings.ARCHIVE_DIR.mkdir(parents=True, exist_ok=True) @@ -271,7 +341,7 @@ class Command(BaseCommand): filter(lambda r: r["model"] == "documents.document", self.manifest), ) - for record in tqdm.tqdm(manifest_documents, disable=progress_bar_disable): + for record in tqdm.tqdm(manifest_documents, disable=self.no_progress_bar): document = Document.objects.get(pk=record["pk"]) doc_file = record[EXPORTER_FILE_NAME] @@ -325,3 +395,33 @@ class Command(BaseCommand): copy_file_with_basic_stats(archive_path, document.archive_path) document.save() + + def decrypt_secret_fields(self) -> None: + """ + The converse decryption of some fields out of the export before importing to database + """ + if self.passphrase: + # Salt has been loaded from metadata.json at this point, so it cannot be None + self.setup_crypto(passphrase=self.passphrase, salt=self.salt) + + had_at_least_one_record = False + + for crypt_config in self.CRYPT_FIELDS: + importer_model = crypt_config["model_name"] + crypt_fields = crypt_config["fields"] + for record in filter( + lambda x: x["model"] == importer_model, + self.manifest, + ): + had_at_least_one_record = True + for field in crypt_fields: + record["fields"][field] = self.decrypt_string( + value=record["fields"][field], + ) + + if had_at_least_one_record: + # It's annoying, but the DB is loaded from the JSON directly + # Maybe could change that in the future? + (self.source / "manifest.json").write_text( + json.dumps(self.manifest, indent=2, ensure_ascii=False), + ) diff --git a/src/documents/management/commands/mixins.py b/src/documents/management/commands/mixins.py index 6fed739b8..823631586 100644 --- a/src/documents/management/commands/mixins.py +++ b/src/documents/management/commands/mixins.py @@ -1,8 +1,27 @@ +import base64 import os from argparse import ArgumentParser +from typing import Optional +from typing import TypedDict +from typing import Union +from cryptography.fernet import Fernet +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC from django.core.management import CommandError +from documents.settings import EXPORTER_CRYPTO_ALGO_NAME +from documents.settings import EXPORTER_CRYPTO_KEY_ITERATIONS_NAME +from documents.settings import EXPORTER_CRYPTO_KEY_SIZE_NAME +from documents.settings import EXPORTER_CRYPTO_SALT_NAME +from documents.settings import EXPORTER_CRYPTO_SETTINGS_NAME + + +class CryptFields(TypedDict): + exporter_key: str + model_name: str + fields: list[str] + class MultiProcessMixin: """ @@ -41,3 +60,109 @@ class ProgressBarMixin: def handle_progress_bar_mixin(self, *args, **options): self.no_progress_bar = options["no_progress_bar"] self.use_progress_bar = not self.no_progress_bar + + +class CryptMixin: + """ + Fully based on: + https://cryptography.io/en/latest/fernet/#using-passwords-with-fernet + + To encrypt: + 1. Call setup_crypto providing the user provided passphrase + 2. Call encrypt_string with a value + 3. Store the returned hexadecimal representation of the value + + To decrypt: + 1. Load the required parameters: + a. key iterations + b. key size + c. key algorithm + 2. Call setup_crypto providing the user provided passphrase and stored salt + 3. Call decrypt_string with a value + 4. Use the returned value + + """ + + # This matches to Django's default for now + # https://github.com/django/django/blob/adae61942/django/contrib/auth/hashers.py#L315 + + # Set the defaults to be used during export + # During import, these are overridden from the loaded values to ensure decryption is possible + key_iterations = 1_000_000 + salt_size = 16 + key_size = 32 + kdf_algorithm = "pbkdf2_sha256" + + CRYPT_FIELDS: CryptFields = [ + { + "exporter_key": "mail_accounts", + "model_name": "paperless_mail.mailaccount", + "fields": [ + "password", + ], + }, + ] + + def get_crypt_params(self) -> dict[str, dict[str, Union[str, int]]]: + return { + EXPORTER_CRYPTO_SETTINGS_NAME: { + EXPORTER_CRYPTO_ALGO_NAME: self.kdf_algorithm, + EXPORTER_CRYPTO_KEY_ITERATIONS_NAME: self.key_iterations, + EXPORTER_CRYPTO_KEY_SIZE_NAME: self.key_size, + EXPORTER_CRYPTO_SALT_NAME: self.salt, + }, + } + + def load_crypt_params(self, metadata: dict): + # Load up the values for setting up decryption + self.kdf_algorithm: str = metadata[EXPORTER_CRYPTO_SETTINGS_NAME][ + EXPORTER_CRYPTO_ALGO_NAME + ] + self.key_iterations: int = metadata[EXPORTER_CRYPTO_SETTINGS_NAME][ + EXPORTER_CRYPTO_KEY_ITERATIONS_NAME + ] + self.key_size: int = metadata[EXPORTER_CRYPTO_SETTINGS_NAME][ + EXPORTER_CRYPTO_KEY_SIZE_NAME + ] + self.salt: str = metadata[EXPORTER_CRYPTO_SETTINGS_NAME][ + EXPORTER_CRYPTO_SALT_NAME + ] + + def setup_crypto(self, *, passphrase: str, salt: Optional[str] = None): + """ + Constructs a class for encryption or decryption using the specified passphrase and salt + + Salt is assumed to be a hexadecimal representation of a cryptographically secure random byte string. + If not provided, it will be derived from the system secure random + """ + self.salt = salt or os.urandom(self.salt_size).hex() + + # Derive the KDF based on loaded settings + if self.kdf_algorithm == "pbkdf2_sha256": + kdf = PBKDF2HMAC( + algorithm=hashes.SHA256(), + length=self.key_size, + salt=bytes.fromhex(self.salt), + iterations=self.key_iterations, + ) + else: # pragma: no cover + raise CommandError( + f"{self.kdf_algorithm} is an unknown key derivation function", + ) + + key = base64.urlsafe_b64encode(kdf.derive(passphrase.encode("utf-8"))) + + self.fernet = Fernet(key) + + def encrypt_string(self, *, value: str) -> str: + """ + Given a string value, encrypts it and returns the hexadecimal representation of the encrypted token + + """ + return self.fernet.encrypt(value.encode("utf-8")).hex() + + def decrypt_string(self, *, value: str) -> str: + """ + Given a string value, decrypts it and returns the original value of the field + """ + return self.fernet.decrypt(bytes.fromhex(value)).decode("utf-8") diff --git a/src/documents/migrations/1045_alter_customfieldinstance_value_monetary.py b/src/documents/migrations/1045_alter_customfieldinstance_value_monetary.py index 9689bbdad..597fbb7f9 100644 --- a/src/documents/migrations/1045_alter_customfieldinstance_value_monetary.py +++ b/src/documents/migrations/1045_alter_customfieldinstance_value_monetary.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1044_workflow_workflowaction_workflowtrigger_and_more"), ] diff --git a/src/documents/migrations/1046_workflowaction_remove_all_correspondents_and_more.py b/src/documents/migrations/1046_workflowaction_remove_all_correspondents_and_more.py index 6ce5da958..3ab010a3c 100644 --- a/src/documents/migrations/1046_workflowaction_remove_all_correspondents_and_more.py +++ b/src/documents/migrations/1046_workflowaction_remove_all_correspondents_and_more.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("auth", "0012_alter_user_first_name_max_length"), migrations.swappable_dependency(settings.AUTH_USER_MODEL), diff --git a/src/documents/migrations/1047_savedview_display_mode_and_more.py b/src/documents/migrations/1047_savedview_display_mode_and_more.py index 3bfd638f9..904f86bb1 100644 --- a/src/documents/migrations/1047_savedview_display_mode_and_more.py +++ b/src/documents/migrations/1047_savedview_display_mode_and_more.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1046_workflowaction_remove_all_correspondents_and_more"), ] diff --git a/src/documents/migrations/1048_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1048_alter_savedviewfilterrule_rule_type.py index dc4d0bf1c..904ad242c 100644 --- a/src/documents/migrations/1048_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1048_alter_savedviewfilterrule_rule_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1047_savedview_display_mode_and_more"), ] diff --git a/src/documents/migrations/1049_document_deleted_at_document_restored_at.py b/src/documents/migrations/1049_document_deleted_at_document_restored_at.py new file mode 100644 index 000000000..39fb41353 --- /dev/null +++ b/src/documents/migrations/1049_document_deleted_at_document_restored_at.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.11 on 2024-04-23 07:56 + +from django.db import migrations +from django.db import models + + +class Migration(migrations.Migration): + dependencies = [ + ("documents", "1048_alter_savedviewfilterrule_rule_type"), + ] + + operations = [ + migrations.AddField( + model_name="document", + name="deleted_at", + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AddField( + model_name="document", + name="restored_at", + field=models.DateTimeField(blank=True, null=True), + ), + ] diff --git a/src/documents/models.py b/src/documents/models.py index f3e5f22ed..8ce038600 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -23,6 +23,8 @@ from multiselectfield import MultiSelectField if settings.AUDIT_LOG_ENABLED: from auditlog.registry import auditlog +from django_softdelete.models import SoftDeleteModel + from documents.data_models import DocumentSource from documents.parsers import get_default_file_extension @@ -130,7 +132,7 @@ class StoragePath(MatchingModel): verbose_name_plural = _("storage paths") -class Document(ModelWithOwner): +class Document(SoftDeleteModel, ModelWithOwner): STORAGE_TYPE_UNENCRYPTED = "unencrypted" STORAGE_TYPE_GPG = "gpg" STORAGE_TYPES = ( @@ -929,7 +931,6 @@ if settings.AUDIT_LOG_ENABLED: auditlog.register( Document, m2m_fields={"tags"}, - mask_fields=["content"], exclude_fields=["modified"], ) auditlog.register(Correspondent) diff --git a/src/documents/permissions.py b/src/documents/permissions.py index 76f1835f2..a254f8377 100644 --- a/src/documents/permissions.py +++ b/src/documents/permissions.py @@ -138,3 +138,23 @@ def get_objects_for_user_owner_aware(user, perms, Model) -> QuerySet: def has_perms_owner_aware(user, perms, obj): checker = ObjectPermissionChecker(user) return obj.owner is None or obj.owner == user or checker.has_perm(perms, obj) + + +class PaperlessNotePermissions(BasePermission): + """ + Permissions class that checks for model permissions for Notes. + """ + + perms_map = { + "GET": ["documents.view_note"], + "POST": ["documents.add_note"], + "DELETE": ["documents.delete_note"], + } + + def has_permission(self, request, view): + if not request.user or (not request.user.is_authenticated): # pragma: no cover + return False + + perms = self.perms_map[request.method] + + return request.user.has_perms(perms) diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index ebe857948..48e26dea3 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -93,7 +93,9 @@ class MatchingModelSerializer(serializers.ModelSerializer): owner = ( data["owner"] if "owner" in data - else self.user if hasattr(self, "user") else None + else self.user + if hasattr(self, "user") + else None ) pk = self.instance.pk if hasattr(self.instance, "pk") else None if ("name" in data or "owner" in data) and self.Meta.model.objects.filter( @@ -289,7 +291,7 @@ class OwnedObjectSerializer( class CorrespondentSerializer(MatchingModelSerializer, OwnedObjectSerializer): - last_correspondence = serializers.DateTimeField(read_only=True) + last_correspondence = serializers.DateTimeField(read_only=True, required=False) class Meta: model = Correspondent @@ -784,6 +786,7 @@ class DocumentSerializer( "created_date", "modified", "added", + "deleted_at", "archive_serial_number", "original_file_name", "archived_file_name", @@ -937,11 +940,12 @@ class BulkEditSerializer( "modify_tags", "modify_custom_fields", "delete", - "redo_ocr", + "reprocess", "set_permissions", "rotate", "merge", "split", + "delete_pages", ], label="Method", write_only=True, @@ -988,8 +992,8 @@ class BulkEditSerializer( return bulk_edit.modify_custom_fields elif method == "delete": return bulk_edit.delete - elif method == "redo_ocr": - return bulk_edit.redo_ocr + elif method == "redo_ocr" or method == "reprocess": + return bulk_edit.reprocess elif method == "set_permissions": return bulk_edit.set_permissions elif method == "rotate": @@ -998,6 +1002,8 @@ class BulkEditSerializer( return bulk_edit.merge elif method == "split": return bulk_edit.split + elif method == "delete_pages": + return bulk_edit.delete_pages else: raise serializers.ValidationError("Unsupported method.") @@ -1126,6 +1132,27 @@ class BulkEditSerializer( except ValueError: raise serializers.ValidationError("invalid pages specified") + if "delete_originals" in parameters: + if not isinstance(parameters["delete_originals"], bool): + raise serializers.ValidationError("delete_originals must be a boolean") + else: + parameters["delete_originals"] = False + + def _validate_parameters_delete_pages(self, parameters): + if "pages" not in parameters: + raise serializers.ValidationError("pages not specified") + if not isinstance(parameters["pages"], list): + raise serializers.ValidationError("pages must be a list") + if not all(isinstance(i, int) for i in parameters["pages"]): + raise serializers.ValidationError("pages must be a list of integers") + + def _validate_parameters_merge(self, parameters): + if "delete_originals" in parameters: + if not isinstance(parameters["delete_originals"], bool): + raise serializers.ValidationError("delete_originals must be a boolean") + else: + parameters["delete_originals"] = False + def validate(self, attrs): method = attrs["method"] parameters = attrs["parameters"] @@ -1152,6 +1179,14 @@ class BulkEditSerializer( "Split method only supports one document", ) self._validate_parameters_split(parameters) + elif method == bulk_edit.delete_pages: + if len(attrs["documents"]) > 1: + raise serializers.ValidationError( + "Delete pages method only supports one document", + ) + self._validate_parameters_delete_pages(parameters) + elif method == bulk_edit.merge: + self._validate_parameters_merge(parameters) return attrs @@ -1829,3 +1864,26 @@ class WorkflowSerializer(serializers.ModelSerializer): self.prune_triggers_and_actions() return instance + + +class TrashSerializer(SerializerWithPerms): + documents = serializers.ListField( + required=False, + label="Documents", + write_only=True, + child=serializers.IntegerField(), + ) + + action = serializers.ChoiceField( + choices=["restore", "empty"], + label="Action", + write_only=True, + ) + + def validate_documents(self, documents): + count = Document.deleted_objects.filter(id__in=documents).count() + if not count == len(documents): + raise serializers.ValidationError( + "Some documents in the list have not yet been deleted.", + ) + return documents diff --git a/src/documents/settings.py b/src/documents/settings.py index c591d397d..9dff44c95 100644 --- a/src/documents/settings.py +++ b/src/documents/settings.py @@ -3,3 +3,9 @@ EXPORTER_FILE_NAME = "__exported_file_name__" EXPORTER_THUMBNAIL_NAME = "__exported_thumbnail_name__" EXPORTER_ARCHIVE_NAME = "__exported_archive_name__" + +EXPORTER_CRYPTO_SETTINGS_NAME = "__crypto__" +EXPORTER_CRYPTO_SALT_NAME = "__salt_hex__" +EXPORTER_CRYPTO_KEY_ITERATIONS_NAME = "__key_iters__" +EXPORTER_CRYPTO_KEY_SIZE_NAME = "__key_size__" +EXPORTER_CRYPTO_ALGO_NAME = "__key_algo__" diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index cdfedcb4c..21aef4cb6 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -301,10 +301,10 @@ def set_storage_path( document.save(update_fields=("storage_path",)) -@receiver(models.signals.post_delete, sender=Document) -def cleanup_document_deletion(sender, instance, using, **kwargs): +# see empty_trash in documents/tasks.py for signal handling +def cleanup_document_deletion(sender, instance, **kwargs): with FileLock(settings.MEDIA_LOCK): - if settings.TRASH_DIR: + if settings.EMPTY_TRASH_DIR: # Find a non-conflicting filename in case a document with the same # name was moved to trash earlier counter = 0 @@ -313,7 +313,7 @@ def cleanup_document_deletion(sender, instance, using, **kwargs): while True: new_file_path = os.path.join( - settings.TRASH_DIR, + settings.EMPTY_TRASH_DIR, old_filebase + (f"_{counter:02}" if counter else "") + old_fileext, ) @@ -363,24 +363,22 @@ class CannotMoveFilesException(Exception): pass -def validate_move(instance, old_path, new_path): - if not os.path.isfile(old_path): - # Can't do anything if the old file does not exist anymore. - logger.fatal(f"Document {instance!s}: File {old_path} has gone.") - raise CannotMoveFilesException - - if os.path.isfile(new_path): - # Can't do anything if the new file already exists. Skip updating file. - logger.warning( - f"Document {instance!s}: Cannot rename file " - f"since target path {new_path} already exists.", - ) - raise CannotMoveFilesException - - @receiver(models.signals.m2m_changed, sender=Document.tags.through) @receiver(models.signals.post_save, sender=Document) def update_filename_and_move_files(sender, instance: Document, **kwargs): + def validate_move(instance, old_path, new_path): + if not os.path.isfile(old_path): + # Can't do anything if the old file does not exist anymore. + msg = f"Document {instance!s}: File {old_path} doesn't exist." + logger.fatal(msg) + raise CannotMoveFilesException(msg) + + if os.path.isfile(new_path): + # Can't do anything if the new file already exists. Skip updating file. + msg = f"Document {instance!s}: Cannot rename file since target path {new_path} already exists." + logger.warning(msg) + raise CannotMoveFilesException(msg) + if not instance.filename: # Can't update the filename if there is no filename to begin with # This happens when the consumer creates a new document. @@ -420,7 +418,10 @@ def update_filename_and_move_files(sender, instance: Document, **kwargs): move_archive = False if not move_original and not move_archive: - # Don't do anything if filenames did not change. + # Just update modified. Also, don't save() here to prevent infinite recursion. + Document.objects.filter(pk=instance.pk).update( + modified=timezone.now(), + ) return if move_original: @@ -532,6 +533,196 @@ def run_workflow( document: Document, logging_group=None, ): + def assignment_action(): + if action.assign_tags.all().count() > 0: + document.tags.add(*action.assign_tags.all()) + + if action.assign_correspondent is not None: + document.correspondent = action.assign_correspondent + + if action.assign_document_type is not None: + document.document_type = action.assign_document_type + + if action.assign_storage_path is not None: + document.storage_path = action.assign_storage_path + + if action.assign_owner is not None: + document.owner = action.assign_owner + + if action.assign_title is not None: + try: + document.title = parse_doc_title_w_placeholders( + action.assign_title, + ( + document.correspondent.name + if document.correspondent is not None + else "" + ), + ( + document.document_type.name + if document.document_type is not None + else "" + ), + (document.owner.username if document.owner is not None else ""), + timezone.localtime(document.added), + ( + document.original_filename + if document.original_filename is not None + else "" + ), + timezone.localtime(document.created), + ) + except Exception: + logger.exception( + f"Error occurred parsing title assignment '{action.assign_title}', falling back to original", + extra={"group": logging_group}, + ) + + if ( + ( + action.assign_view_users is not None + and action.assign_view_users.count() > 0 + ) + or ( + action.assign_view_groups is not None + and action.assign_view_groups.count() > 0 + ) + or ( + action.assign_change_users is not None + and action.assign_change_users.count() > 0 + ) + or ( + action.assign_change_groups is not None + and action.assign_change_groups.count() > 0 + ) + ): + permissions = { + "view": { + "users": action.assign_view_users.all().values_list( + "id", + ) + or [], + "groups": action.assign_view_groups.all().values_list( + "id", + ) + or [], + }, + "change": { + "users": action.assign_change_users.all().values_list( + "id", + ) + or [], + "groups": action.assign_change_groups.all().values_list( + "id", + ) + or [], + }, + } + set_permissions_for_object( + permissions=permissions, + object=document, + merge=True, + ) + + if action.assign_custom_fields is not None: + for field in action.assign_custom_fields.all(): + if ( + CustomFieldInstance.objects.filter( + field=field, + document=document, + ).count() + == 0 + ): + # can be triggered on existing docs, so only add the field if it doesn't already exist + CustomFieldInstance.objects.create( + field=field, + document=document, + ) + + def removal_action(): + if action.remove_all_tags: + document.tags.clear() + else: + for tag in action.remove_tags.filter( + pk__in=list(document.tags.values_list("pk", flat=True)), + ).all(): + document.tags.remove(tag.pk) + + if action.remove_all_correspondents or ( + document.correspondent + and ( + action.remove_correspondents.filter( + pk=document.correspondent.pk, + ).exists() + ) + ): + document.correspondent = None + + if action.remove_all_document_types or ( + document.document_type + and ( + action.remove_document_types.filter( + pk=document.document_type.pk, + ).exists() + ) + ): + document.document_type = None + + if action.remove_all_storage_paths or ( + document.storage_path + and ( + action.remove_storage_paths.filter( + pk=document.storage_path.pk, + ).exists() + ) + ): + document.storage_path = None + + if action.remove_all_owners or ( + document.owner + and (action.remove_owners.filter(pk=document.owner.pk).exists()) + ): + document.owner = None + + if action.remove_all_permissions: + permissions = { + "view": { + "users": [], + "groups": [], + }, + "change": { + "users": [], + "groups": [], + }, + } + set_permissions_for_object( + permissions=permissions, + object=document, + merge=False, + ) + elif ( + (action.remove_view_users.all().count() > 0) + or (action.remove_view_groups.all().count() > 0) + or (action.remove_change_users.all().count() > 0) + or (action.remove_change_groups.all().count() > 0) + ): + for user in action.remove_view_users.all(): + remove_perm("view_document", user, document) + for user in action.remove_change_users.all(): + remove_perm("change_document", user, document) + for group in action.remove_view_groups.all(): + remove_perm("view_document", group, document) + for group in action.remove_change_groups.all(): + remove_perm("change_document", group, document) + + if action.remove_all_custom_fields: + CustomFieldInstance.objects.filter(document=document).delete() + elif action.remove_custom_fields.all().count() > 0: + CustomFieldInstance.objects.filter( + field__in=action.remove_custom_fields.all(), + document=document, + ).delete() + for workflow in ( Workflow.objects.filter( enabled=True, @@ -552,6 +743,10 @@ def run_workflow( .prefetch_related("triggers") .order_by("order") ): + # This can be called from bulk_update_documents, which may be running multiple times + # Refresh this so the matching data is fresh and instance fields are re-freshed + # Otherwise, this instance might be behind and overwrite the work another process did + document.refresh_from_db() if matching.document_matches_workflow( document, workflow, @@ -565,198 +760,10 @@ def run_workflow( ) if action.type == WorkflowAction.WorkflowActionType.ASSIGNMENT: - if action.assign_tags.all().count() > 0: - document.tags.add(*action.assign_tags.all()) - - if action.assign_correspondent is not None: - document.correspondent = action.assign_correspondent - - if action.assign_document_type is not None: - document.document_type = action.assign_document_type - - if action.assign_storage_path is not None: - document.storage_path = action.assign_storage_path - - if action.assign_owner is not None: - document.owner = action.assign_owner - - if action.assign_title is not None: - try: - document.title = parse_doc_title_w_placeholders( - action.assign_title, - ( - document.correspondent.name - if document.correspondent is not None - else "" - ), - ( - document.document_type.name - if document.document_type is not None - else "" - ), - ( - document.owner.username - if document.owner is not None - else "" - ), - timezone.localtime(document.added), - ( - document.original_filename - if document.original_filename is not None - else "" - ), - timezone.localtime(document.created), - ) - except Exception: - logger.exception( - f"Error occurred parsing title assignment '{action.assign_title}', falling back to original", - extra={"group": logging_group}, - ) - - if ( - ( - action.assign_view_users is not None - and action.assign_view_users.count() > 0 - ) - or ( - action.assign_view_groups is not None - and action.assign_view_groups.count() > 0 - ) - or ( - action.assign_change_users is not None - and action.assign_change_users.count() > 0 - ) - or ( - action.assign_change_groups is not None - and action.assign_change_groups.count() > 0 - ) - ): - permissions = { - "view": { - "users": action.assign_view_users.all().values_list( - "id", - ) - or [], - "groups": action.assign_view_groups.all().values_list( - "id", - ) - or [], - }, - "change": { - "users": action.assign_change_users.all().values_list( - "id", - ) - or [], - "groups": action.assign_change_groups.all().values_list( - "id", - ) - or [], - }, - } - set_permissions_for_object( - permissions=permissions, - object=document, - merge=True, - ) - - if action.assign_custom_fields is not None: - for field in action.assign_custom_fields.all(): - if ( - CustomFieldInstance.objects.filter( - field=field, - document=document, - ).count() - == 0 - ): - # can be triggered on existing docs, so only add the field if it doesn't already exist - CustomFieldInstance.objects.create( - field=field, - document=document, - ) + assignment_action() elif action.type == WorkflowAction.WorkflowActionType.REMOVAL: - if action.remove_all_tags: - document.tags.clear() - else: - for tag in action.remove_tags.filter( - pk__in=list(document.tags.values_list("pk", flat=True)), - ).all(): - document.tags.remove(tag.pk) - - if action.remove_all_correspondents or ( - document.correspondent - and ( - action.remove_correspondents.filter( - pk=document.correspondent.pk, - ).exists() - ) - ): - document.correspondent = None - - if action.remove_all_document_types or ( - document.document_type - and ( - action.remove_document_types.filter( - pk=document.document_type.pk, - ).exists() - ) - ): - document.document_type = None - - if action.remove_all_storage_paths or ( - document.storage_path - and ( - action.remove_storage_paths.filter( - pk=document.storage_path.pk, - ).exists() - ) - ): - document.storage_path = None - - if action.remove_all_owners or ( - document.owner - and (action.remove_owners.filter(pk=document.owner.pk).exists()) - ): - document.owner = None - - if action.remove_all_permissions: - permissions = { - "view": { - "users": [], - "groups": [], - }, - "change": { - "users": [], - "groups": [], - }, - } - set_permissions_for_object( - permissions=permissions, - object=document, - merge=False, - ) - elif ( - (action.remove_view_users.all().count() > 0) - or (action.remove_view_groups.all().count() > 0) - or (action.remove_change_users.all().count() > 0) - or (action.remove_change_groups.all().count() > 0) - ): - for user in action.remove_view_users.all(): - remove_perm("view_document", user, document) - for user in action.remove_change_users.all(): - remove_perm("change_document", user, document) - for group in action.remove_view_groups.all(): - remove_perm("view_document", group, document) - for group in action.remove_change_groups.all(): - remove_perm("change_document", group, document) - - if action.remove_all_custom_fields: - CustomFieldInstance.objects.filter(document=document).delete() - elif action.remove_custom_fields.all().count() > 0: - CustomFieldInstance.objects.filter( - field__in=action.remove_custom_fields.all(), - document=document, - ).delete() + removal_action() document.save() diff --git a/src/documents/static/accounts.css b/src/documents/static/base.css similarity index 88% rename from src/documents/static/accounts.css rename to src/documents/static/base.css index 2a1d905f9..90d8d7b77 100644 --- a/src/documents/static/accounts.css +++ b/src/documents/static/base.css @@ -7,6 +7,19 @@ body { --pngx-primary-active: #0c2c10; } +.logo { + height: auto; +} + +.byline { + font-size: 0.6rem; + letter-spacing: 0.1rem; +} + +.text-primary { + color: var(--pngx-primary) !important; +} + .form-control { --bs-body-bg: #fff; } @@ -28,6 +41,7 @@ body { .form-accounts { max-width: 330px; + min-width: 300px; } .form-stacked-top input { @@ -74,4 +88,8 @@ body { svg.logo .text { fill: #abb2bf !important; } + + .byline { + color: #abb2bf; + } } diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 1bc812bfd..f3eb258b8 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -2,6 +2,7 @@ import hashlib import logging import shutil import uuid +from datetime import timedelta from pathlib import Path from tempfile import TemporaryDirectory from typing import Optional @@ -10,8 +11,10 @@ import tqdm from celery import Task from celery import shared_task from django.conf import settings +from django.db import models from django.db import transaction from django.db.models.signals import post_save +from django.utils import timezone from filelock import FileLock from whoosh.writing import AsyncWriter @@ -41,6 +44,7 @@ from documents.plugins.base import StopConsumeTaskError from documents.plugins.helpers import ProgressStatusOptions from documents.sanity_checker import SanityCheckFailedException from documents.signals import document_updated +from documents.signals.handlers import cleanup_document_deletion if settings.AUDIT_LOG_ENABLED: import json @@ -117,10 +121,13 @@ def consume_file( ConsumerPlugin, ] - with ProgressManager( - overrides.filename or input_doc.original_file.name, - self.request.id, - ) as status_mgr, TemporaryDirectory(dir=settings.SCRATCH_DIR) as tmp_dir: + with ( + ProgressManager( + overrides.filename or input_doc.original_file.name, + self.request.id, + ) as status_mgr, + TemporaryDirectory(dir=settings.SCRATCH_DIR) as tmp_dir, + ): tmp_dir = Path(tmp_dir) for plugin_class in plugins: plugin_name = plugin_class.NAME @@ -278,6 +285,10 @@ def update_document_archive_file(document_id): shutil.move(parser.get_archive_path(), document.archive_path) shutil.move(thumbnail, document.thumbnail_path) + document.refresh_from_db() + logger.info( + f"Updating index for document {document_id} ({document.archive_checksum})", + ) with index.open_index_writer() as writer: index.update_document(writer, document) @@ -289,3 +300,29 @@ def update_document_archive_file(document_id): ) finally: parser.cleanup() + + +@shared_task +def empty_trash(doc_ids=None): + documents = ( + Document.deleted_objects.filter(id__in=doc_ids) + if doc_ids is not None + else Document.deleted_objects.filter( + deleted_at__lt=timezone.localtime(timezone.now()) + - timedelta( + days=settings.EMPTY_TRASH_DELAY, + ), + ) + ) + + try: + # Temporarily connect the cleanup handler + models.signals.post_delete.connect(cleanup_document_deletion, sender=Document) + documents.delete() # this is effectively a hard delete + except Exception as e: # pragma: no cover + logger.exception(f"Error while emptying trash: {e}") + finally: + models.signals.post_delete.disconnect( + cleanup_document_deletion, + sender=Document, + ) diff --git a/src/documents/templates/paperless-ngx/base.html b/src/documents/templates/paperless-ngx/base.html index 7a15320fd..49fc0edf4 100644 --- a/src/documents/templates/paperless-ngx/base.html +++ b/src/documents/templates/paperless-ngx/base.html @@ -13,14 +13,31 @@ {% endblock head_title %} - +
{% csrf_token %} - {% include "paperless-ngx/snippets/svg_logo.html" with extra_attrs="width='300' class='logo mb-4'" %} + {% if not APP_LOGO and not APP_TITLE %} + {% include "paperless-ngx/snippets/svg_logo.html" with extra_attrs="width='300' class='logo mb-4'" %} + {% else %} + {% if APP_LOGO %} + +
+ +
+ {% else %} +

+ {% include "paperless-ngx/snippets/svg_leaf.html" with extra_attrs="width='30' class='mt-2'" %} +
+ {{ APP_TITLE }} + +
+

+ {% endif %} + {% endif %} {% for message in messages %}