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..1736b5f08 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -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..1ed22b439 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -53,7 +53,6 @@ updates: development: patterns: - "*pytest*" - - "black" - "ruff" - "mkdocs-material" django: 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/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a7156b7e..8face2476 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.7' 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..4136b547e 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. We format Python code with [ruff](https://docs.astral.sh/ruff/formatter/). ## Branches diff --git a/Dockerfile b/Dockerfile index d13f1b9ac..a88710371 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + --output libgs10_${GS_VERSION}.dfsg.git20240518-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg.git20240518-1_${TARGETARCH}.deb \ && curl --fail --silent --show-error --location \ - --output ghostscript_${GS_VERSION}.dfsg-2_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + --output ghostscript_${GS_VERSION}.dfsg.git20240518-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg.git20240518-1_${TARGETARCH}.deb \ && curl --fail --silent --show-error --location \ - --output libgs10-common_${GS_VERSION}.dfsg-2_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 \ + --output libgs10-common_${GS_VERSION}.dfsg.git20240518-1_all.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10-common_${GS_VERSION}.dfsg.git20240518-1_all.deb \ + && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg.git20240518-1_all.deb \ + && dpkg --install ./libgs10_${GS_VERSION}.dfsg.git20240518-1_${TARGETARCH}.deb \ + && dpkg --install ./ghostscript_${GS_VERSION}.dfsg.git20240518-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..da26987cf 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 = "*" @@ -37,7 +37,7 @@ nltk = "*" ocrmypdf = "~=15.4" pathvalidate = "*" pdf2image = "*" -psycopg2 = "*" +psycopg = {version = "*", extras = ["c"]} python-dateutil = "*" python-dotenv = "*" python-gnupg = "*" @@ -46,23 +46,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..bc19eb4a6 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "4e53ee87cb715982b75fe720a69463af4f249b755691fcbc05bec8fe70e51330" + "sha256": "1bf32173eb08a61ff9ce2f3fd4cb968930da3b480583c218d1c439560839c363" }, "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": [ @@ -886,83 +886,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 +1229,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 +1376,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,100 +1543,103 @@ }, "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": [ @@ -1582,88 +1654,88 @@ }, "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 +1747,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 +1770,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 +1965,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 +1992,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" }, "tzdata": { "hashes": [ @@ -2005,119 +2079,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 +2469,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 +2507,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 +2712,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 +2849,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 +2957,6 @@ "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" ], - "index": "pypi", "markers": "python_version >= '3.7'", "version": "==3.1.4" }, @@ -3021,12 +3068,12 @@ }, "mkdocs-material": { "hashes": [ - "sha256:049f82770f40559d3c2aa2259c562ea7257dbb4aaa9624323b5ef27b2d95a450", - "sha256:210e1f179682cd4be17d5c641b2f4559574b9dea2f589c3f0e7c17c5bd1959bc" + "sha256:68fdab047a0b9bfbefe79ce267e8a7daaf5128bcf7867065fcd201ee335fece1", + "sha256:d0662561efb725b712207e0ee01f035ca15633f29a64628e24f01ec99d7078f4" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==9.5.21" + "version": "==9.5.25" }, "mkdocs-material-extensions": { "hashes": [ @@ -3036,21 +3083,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": [ @@ -3193,11 +3232,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 +3248,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 +3304,12 @@ }, "pytest": { "hashes": [ - "sha256:1733f0620f6cda4095bbf0d9ff8022486e91892245bb9e7d5542c018f612f233", - "sha256:d507d4482197eac0ba2bae2e9babf0672eb333017bcedaa5fb1a3d42c1174b3f" + "sha256:5046e5b46d8e4cac199c373041f26be56fdb81eb4e67dc11d4e10811fc3408fd", + "sha256:faccc5d332b8c3719f40283d0d44aa5cf101cec36f88cde9ed8f2bc0538612b1" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==8.2.0" + "version": "==8.2.1" }, "pytest-cov": { "hashes": [ @@ -3448,150 +3487,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:07fc80bbb61e42b3b23b10fda6a2a0f5a067f810180a3760c5ef1b456c21b9db", + "sha256:10f2204b9a613988e3484194c2c9e96a22079206b22b787605c255f130db5ed7", + "sha256:10f973d521d910e5f9c72ab27e409e839089f955be8a4c8826601a6323a89753", + "sha256:13a1768b0691619822ae6d446132dbdfd568b700ecd3652b20d4e8bc1e498f78", + "sha256:2331d2b051dc77a289a653fcc6a42cce357087c5975738157cd966590b18b5e1", + "sha256:50e9651578b629baec3d1513b2534de0ac7ed7753e1382272b8d609997e27e83", + "sha256:59c3d110970001dfa494bcd95478e62286c751126dfb15c3c46e7915fc49694f", + "sha256:769e5a51df61e07e887b81e6f039e7ed3573316ab7dd9f635c5afaa310e4030e", + "sha256:8874a9df7766cb956b218a0a239e0a5d23d9e843e4da1e113ae1d27ee420877a", + "sha256:9e3ab684ad403a9ed1226894c32c3ab9c2e0718440f6f50c7c5829932bc9e054", + "sha256:a7c0083febdec17571455903b184a10026603a1de078428ba155e7ce9358c5f6", + "sha256:ad1b20e66a44057c326168437d680a2166c177c939346b19c0d6b08a62a37589", + "sha256:b9de9a6e49f7d529decd09381c0860c3f82fa0b0ea00ea78409b785d2308a567", + "sha256:cbf5d818553add7511c38b05532d94a407f499d1a76ebb0cad0374e32bc67202", + "sha256:e089371c67892a73b6bb1525608e89a2aca1b77b5440acf7a71dda5dac958f9e", + "sha256:fa4dafe3fe66d90e2e2b63fa1591dd6e3f090ca2128daa0be33db894e6c18648", + "sha256:fa9773c6c00f4958f73b317bc0fd125295110c3776089f6ef318f4b775f0abe4" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==0.4.3" + "version": "==0.4.7" }, "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 +3642,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,11 +3701,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": [ @@ -3677,97 +3717,100 @@ }, "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:2828e64edb5386ea6a52e7ba7cdb17bb30a73a858f5eb6eb93d8d36f5ea26091", + "sha256:35427f6d5594f4acf82d25541438348c26736fa9b3afa2754bcd63cdb99d8e8f" ], "markers": "python_version >= '3.8'", - "version": "==3.18.1" + "version": "==3.19.1" }, "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 +3833,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 +3995,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 +4053,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 +4138,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 +4222,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 +4240,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 +4283,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 +4309,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..a65647836 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,7 @@ optional arguments: -sm, --split-manifest -z, --zip -zn, --zip-name +--data-only ``` `target` is a folder to which the data gets written. This includes @@ -327,6 +306,9 @@ 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. + !!! warning If exporting with the file name format, there may be errors due to @@ -341,10 +323,15 @@ 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 | + 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`. @@ -586,7 +573,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 46853f80a..1d040ffff 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,21 @@ # Changelog +## 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 diff --git a/docs/configuration.md b/docs/configuration.md index bbe46f4de..f4c271ce1 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -288,6 +288,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 +622,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 diff --git a/docs/development.md b/docs/development.md index a87641ded..969c293b1 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. diff --git a/docs/setup.md b/docs/setup.md index 6d1dc553c..19811e7c6 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -300,8 +300,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. @@ -667,24 +676,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..5705be3da 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 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/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 502b29e30..56cfa9ae4 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -253,6 +253,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -338,7 +350,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -368,7 +380,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 @@ -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,7 +678,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -729,7 +714,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1013,21 +998,50 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1060,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 +1083,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 +1122,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 +1154,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 +1196,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 +1231,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 +1257,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 +1317,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 +1335,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 +1346,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,7 +1357,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1406,7 +1420,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1517,42 +1531,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 +1577,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 +1680,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 +1691,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 +1702,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 +1741,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 @@ -2113,20 +2127,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2247,18 +2257,10 @@ 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 @@ -2292,15 +2294,19 @@ 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 @@ -2671,41 +2677,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 - 23 - - - 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2732,113 +2731,113 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 @@ -2909,6 +2908,47 @@ 579 + + 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 +2970,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 +2998,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 +4463,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 +4578,13 @@ 15 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Filter documents with these Tags @@ -4539,13 +4592,6 @@ 41 - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - What's this? @@ -5140,6 +5186,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 +5434,8 @@ 36 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5383,15 +5474,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 +5500,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 +5537,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 +5578,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 +5605,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 +5628,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 +5646,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,50 +5825,50 @@ 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 src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -5785,102 +5883,109 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - - 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 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 @@ -5891,32 +5996,49 @@ 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 @@ -6263,13 +6385,20 @@ 716 - - This operation will permanently redo OCR for selected 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 752 + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + This operation will permanently rotate the original version of document(s). @@ -6277,6 +6406,13 @@ 785 + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 786 + + Merge confirm @@ -6295,18 +6431,7 @@ 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 + 822 @@ -6327,37 +6452,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 +7056,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..904fc3647 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" 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.module.ts b/src-ui/src/app/app.module.ts index 24d63ed11..f9e04b069 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,7 @@ 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 { airplane, archive, @@ -160,6 +161,7 @@ import { clipboardCheckFill, clipboardFill, dash, + dashCircle, diagram3, dice5, doorOpen, @@ -174,6 +176,7 @@ import { fileEarmarkCheck, fileEarmarkFill, fileEarmarkLock, + fileEarmarkMinus, files, fileText, filter, @@ -259,6 +262,7 @@ const icons = { clipboardCheckFill, clipboardFill, dash, + dashCircle, diagram3, dice5, doorOpen, @@ -273,6 +277,7 @@ const icons = { fileEarmarkCheck, fileEarmarkFill, fileEarmarkLock, + fileEarmarkMinus, files, fileText, filter, @@ -475,7 +480,6 @@ function initializeApp(settings: SettingsService) { CustomFieldEditDialogComponent, CustomFieldsDropdownComponent, ProfileEditDialogComponent, - PdfViewerComponent, DocumentLinkComponent, PreviewPopupComponent, SwitchComponent, @@ -492,6 +496,7 @@ function initializeApp(settings: SettingsService) { CustomFieldDisplayComponent, GlobalSearchComponent, HotkeyDialogComponent, + DeletePagesConfirmDialogComponent, ], imports: [ BrowserModule, @@ -500,6 +505,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 @@ +
+ + +
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 0c84521c6..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 - -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, - } - params.isEvalSupported = false - - 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/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..339d35587 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 @@ -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..ea4a3c9bb 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 @@ -32,7 +32,7 @@ @for (change of entry.changes | keyvalue; track change.key) { @if (change.value["type"] === 'm2m') {
  • - {{ change.value["operation"] | titlecase }}  + {{ change.value["operation"] | titlecase }}  {{ change.key | titlecase }}{{ change.value["objects"].join(', ') }}
  • 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 (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/ui-settings.ts b/src-ui/src/app/data/ui-settings.ts index 6f8f246ff..29ea08786 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,7 @@ 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', } export const SETTINGS: UiSetting[] = [ @@ -225,4 +231,9 @@ export const SETTINGS: UiSetting[] = [ type: 'boolean', default: false, }, + { + key: SETTINGS_KEYS.SEARCH_FULL_TYPE, + type: 'string', + default: GlobalSearchType.TITLE_CONTENT, + }, ] 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/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 39190d033..d709e69ce 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.6', + version: '2.9.0-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 997097aed..f67eb6f9f 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Volgende @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktiveer notas @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Kennisgewings @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentverwerking @@ -1383,7 +1397,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 +1405,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 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Toon kennisgewings wanneer dokumentverwerking misluk @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Onderdruk kennisgewings op paneelbord @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Geen bewaarde aansigte gedefinieer. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Bewaarde aansig "" is geskrap. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Instellings is suksesvol bewaar. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Herlaai nou @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Fout toe instellings op bediener bewaar is. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Laai oorspronklike af - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Voer OCR weer uit + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorige @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Argiefreeksnommer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum geskep @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhoud @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum gewysig @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum toegevoeg @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Medialêernaam @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Oorspronklike lêernaam @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Oorspronklike MD5 kontrolesom @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Oorspronklike lêergrootte @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Oorspronklike MIME-tipe @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-kontrolesomargief @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Lêergrootteargief @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Oorspronklike dokumentmetadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Geargiveerdedokumentmetadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Voorskou @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Bewaar & volgende @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Voer wagwoord in @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fout by ophaal van metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fout by ophaal van voorstelle. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Wil u regtig dokument skrap"? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Die lêers vir hierdie dokument word permanent geskrap. Dit kan nie ontdaan word nie. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Skrap dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Bevestig OCR-heruitvoer + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Hierdie bewerking sal OCR permanent vir hierdie dokument heruitvoer. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Geskrapte dokument(e) - - This operation will permanently redo OCR for selected 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 752 - OCR sal permanent heruitgevoer word vir gekose dokument(e) + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Geskep: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondente @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Laas gebruik @@ -7702,7 +7792,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 bd0890ecc..9d27c40e8 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 التالي @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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,7 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 السماح بالملاحظات @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 الأذونات الافتراضية @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 المالك الافتراضي @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 أذونات العرض الافتراضية @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 ‏أذون ‏التعديل الافتراضية @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 الإشعارات @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 معالجة المستندات @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 إظهار الإشعارات عند وجود مستندات جديدة @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 إظهار الإشعارات عند اكتمال معالجة المستندات بنجاح @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 إظهار الإشعارات عند فشل معالجة المستندات @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 منع الإشعارات في لوحة التحكم @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 إظهار التحذير عند إغلاق المشاهدات المحفوظة مع التغييرات غير المحفوظة @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 حجم صفحات المستند @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 عرض بتنسيق @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 جدول @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 بطاقات صغيرة @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 بطاقات كبيرة @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 لا توجد آراء محفوظة. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 العرض المحفوظ "" مُسح. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 حُفظت الإعدادات بنجاح. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 حفظت الإعدادات بنجاح. إعادة تحميل مطلوب لتطبيق بعض التغييرات. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 إعادة تحميل الآن @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 حدث خطأ أثناء تخزين الإعدادات على السيرفر. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 فتح @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 فلترة المستندات @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 لا توجد نتائج @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 المستندات @@ -2983,15 +2981,15 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 - Saved Views + طرق العرض المحفوظة Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 أوسمة البحث @@ -2999,15 +2997,15 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 - Correspondents + جهات التراسل Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 أنواع المستندات @@ -3015,15 +3013,15 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 - Storage paths + مسارات التخزين Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 المستخدمين @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 المجموعات @@ -3039,57 +3037,57 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 - Custom fields + الحقول المخصصة Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 - Mail accounts + حسابات البريد Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 - Mail rules + قواعد البريد Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 - Workflows + سير العمل Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 - Successfully updated object. + تم تحديث الكائن بنجاح. Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 - Error occurred saving object. + حدث خطأ أثناء حفظ الكائن. Clear @@ -3163,6 +3161,50 @@ أكّد + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ إضافة علامة + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ تصفية الوثائق بهذه العلامات - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - فتح الرابط - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ تحميل النسخة الأصلية - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - إعادة OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 السابق @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 تفاصيل @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 الرقم التسلسلي للأرشيف @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 تاريخ الإنشاء @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 محتوى @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 تاريخ التعديل @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 تاريخ الإضافة @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 اسم ملف الوسائط @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 اسم الملف الأصلي @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 مجموع MD5 الاختباري للأصل @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 حجم الملف الأصلي @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 نوع mime الأصلي @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 مجموع MD5 الاختباري للأرشيف @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 حجم ملف الأرشيف @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 بيانات التعريف للمستند الأصلي @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 بيانات التعريف للمستند الأصلي @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 معاينة @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 ملاحظات @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 السّجل التاريخي @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 حفظ & التالي @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 حفظ & وإغلاق @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 أدخل كلمة المرور @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 حدث خطأ في تحميل المحتوى @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 تم اكتشاف تغييرات في المستند @@ -6268,7 +6358,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 إصدار هذا المستند في جلسة المتصفح الخاصة بك يبدو أقدم من الإصدار الحالي. @@ -6276,7 +6366,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 حفظ المستند هنا قد يستبدل التغييرات الأخرى التي تم إجراؤها. لاستعادة الإصدار الحالي، تجاهَل التغييرات أو أغلِق المستند. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 حسناً @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 خطأ في استرجاع البيانات الوصفية @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 خطأ في استرجاع الاقتراحات. @@ -6344,11 +6434,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 تم حفظ المستند بنجاح. @@ -6356,11 +6446,11 @@ 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 خطأ أثناء حفظ المستند @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 هل تريد حقاً حذف المستند " @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 ستحذف ملفات هذا المستند بشكل دائم. لا يمكن التراجع عن هذه العملية. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 حذف مستند @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 حدث خطأ في أثناء حذف المستند - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - إعادة تأكيد OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - هذه العملية ستعيد بشكل دائم OCR لهذا المستند. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - إعادة تشغيل OCR ستبدأ في الخلفية. إغلاق وإعادة فتح أو إعادة تحميل هذا المستند بعد اكتمال العملية لمشاهدة محتوى جديد. + 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 خطأ في تنفيذ العملية @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 ملاءمة حجم الصفحة @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 تأكيد التقسيم @@ -6468,7 +6566,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 هذه العملية ستؤدي إلى تقسيم المستند (أو المستندات) المحددة إلى مستندات جديدة. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 عملية التقسيم ستبدأ في الخلفية. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 خطأ في تنفيذ عملية التقسيم @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 هذه العملية ستؤدي إلى تدوير النسخة الأصلية من الوثيقة الحالية بشكل دائم. - - 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 + 1166 سيبدأ التدوير في الخلفية. قم بإغلاق وإعادة فتح المستند بعد اكتمال العملية لرؤية التغييرات. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 خطأ في تنفيذ عملية التدوير + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ حذف المستند(المستندات) - - This operation will permanently redo OCR for selected 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 752 - هذه العملية ستعيد بشكل دائم OCR لي المستند(المستندات) المختارة. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند (أو المستندات) بشكل دائم. + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 786 + + سيؤدي هذا إلى تغيير النسخة الأصلية. + Merge confirm @@ -6946,18 +7080,6 @@ سيتم وضع المستند المدمج في قائمة انتظار الاستهلاك. - - 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - أنشئ: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 جهة التراسل @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 جهات التراسل @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 آخر استخدام @@ -7702,7 +7792,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.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 610ad17f0..cd2cf3ea5 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Наступная @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Апавяшчэнні @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Апрацоўка дакумента @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Паказваць апавяшчэнні пры выяўленні новых дакументаў @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Паказваць апавяшчэнні, калі апрацоўка дакумента завершана паспяхова @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Паказваць апавяшчэнні, калі апрацоўка дакумента няўдалая @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Схаваць апавяшчэння на галоўнай панэлі @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Няма захаваных праглядаў. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Захаваны выгляд "" выдалены. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Налады былі паспяхова захаваны. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Налады былі паспяхова захаваны. Каб прымяніць некаторыя змены, патрабуецца перазагрузка. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перазагрузіць зараз @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ Пацвердзіць + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Дадаць тэг + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Спампаваць арыгінал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Паўтарыць OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Папярэдняя @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Падрабязнасці @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Парадкавы нумар архіва @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата стварэння @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Змест @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата змянення @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата дадання @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Імя медыяфайла @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Арыгінальная назва файла @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Арыгінальная кантрольная сума MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Арыгінальны памер файла @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Арыгінальны MIME тып @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 сума архіва @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Памер файла архіва @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Арыгінальныя метададзеныя дакумента @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метададзеныя архіўнага дакумента @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Захаваць & наступны @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Увядзіце пароль @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Вы сапраўды хочаце выдаліць дакумент ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Файлы для гэтага дакумента будуць выдалены назаўсёды. Гэтую аперацыю нельга адмяніць. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Выдаліць дакумент @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Паўтарыць пацверджанне OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Гэтая аперацыя назаўсёды паўторыць OCR для гэтага дакумента. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Выдаліць дакумент(ы) - - This operation will permanently redo OCR for selected 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 752 - Гэта аперацыя назаўсёды паўторыць OCR для выбраных дакументаў. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Створана: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 карэспандэнт @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 карэспандэнты @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Апошняе выкарыстанне @@ -7702,7 +7792,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 626a7b024..8833cd8c3 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Напред @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Включване на бележки @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Права по подразбиране @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Собственик по подразбиране @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Права за преглед по подразбиране @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Права за промяна по подразбиране @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Известия @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обработване на документ @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показване на известия, когато са засечени нови документи @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показване на известия, когато обработката на документ приключи успешно @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показване на известия, когато обработката на документ се провали @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Потискане на известията в таблото за управление @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показване на предупреждение при затваряне на запазени изгледи с незапазени промени @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Няма запазени дефинирани изгледи. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Запазен изглед "" е изтрит. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Настройките са запазени успешно. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Настройките са запазени успешно. Нужно е презареждане, за да влязат в сила. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Презареждане веднага @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Възникна грешка при запазване на настройките в сървъра. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ Потвърди + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Добавяне на етикет + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Филтриране на документи с тези етикети - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Отваряне на връзка - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ Изтегляне на оригинала - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторно OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Предишно @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Подробности @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Сериен номер на архива @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата на създаване @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Съдържание @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата на промяна @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата на добавяне @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Име на медиен файл @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Оригинално име на файла @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригинална контролна сума MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Оригинален размер на файла @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригинален mime тип @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Архивна контролна сума MD5 @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Размер на архива @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Оригинални метаданни на документ @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Архивирани метаданни на документа @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Преглед @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Запази & следващото @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Запази & затвори @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Въведете парола @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Възникна грешка при зареждане на съдържание: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Установени промени в документа @@ -6268,7 +6358,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 Версията на този документ в сесията на вашия браузър изглежда по-стара от съществуващата версия. @@ -6276,7 +6366,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 Записването на документа тук може да презапише други направени промени. За да възстановите съществуващата версия, отхвърлете промените или затворете документа. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ок @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Грешка при извличане на метаданни @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Грешка при извличане на предложения. @@ -6344,11 +6434,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 Документа е запазен успешно. @@ -6356,11 +6446,11 @@ 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 Грешка при запазване на документа @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Наистина ли искате да изтриете документа ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Файловете за този документ ще бъдат изтрити завинаги. Тази операция не може да бъде отменена. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Изтриване на документ @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Грешка при изтриване на документа - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Потвърдете Повтаряне OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Тази операция ще повтори за постоянно OCR за този документ. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - Операцията Повтаряне OCR ще започне във фонов режим. Затворете и отворете отново или презаредете този документ, след като операцията приключи, за да видите новото съдържание. + 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 Грешка при изпълнение на операцията @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Побиране на страницата @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Изтриване на документ(и) - - This operation will permanently redo OCR for selected 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 752 - Тази операция ще повтори OCR перманентно за " избраните документ(и). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Създаден: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 кореспондент @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 кореспонденти @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Последно използан @@ -7702,7 +7792,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 8abb2d5fa..4fb32608f 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Següent @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilita notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permisos per defecte @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propietari per defecte @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permisos per defecte de visionat @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Edita permisos per defecte @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificacions @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processant document @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suprimeix les notificacions del tauler @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Mida de pàgina del document @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Mostra com @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Taula @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Tarja Petita @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Tarja Gran @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Sense vistes definides. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vista Guardada "" esborrada. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Configuració guardada amb èxit. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarrega ara @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error desant opcions al servidor. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Obrir @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filtra Documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Cap resultat @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Vistes guardades @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Etiquetes @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Corresponsals @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Tipus document @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Rutes emmagatzematge @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Usuaris @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Grups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Camps personalitzats @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Comptes de correu @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Normes e-mail @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Fluxos @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Objecte actualitzat correctament. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error desant objecte. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Afegir etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Treure etiqueta + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Baixa original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Refés OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalls @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de sèrie de l'arxiu @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data de creació @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contingut @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modificació @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data afegit @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nom Arxiu @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nom arxiu original @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Mida arxiu original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipus mímic original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 checksum arxivat @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Mida arxiu arxivat @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadades del document original @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadades del document arxivat @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vista prèvia @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historial @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Desa & següent @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Desa & tanca @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introdueix Contrasenya @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Error carregant contingut: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Canvis detectats al document @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Següent document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Document Anterior @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Desar Document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error recuperant metadada @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error recuperant suggerències. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Realment vols esborrar el document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Els fitxers d'aquest document se suprimiran permanentment. Aquesta operació no es pot desfer. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Esborra document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error esborrant document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Refer OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Aquesta operació tornarà a fer l'OCR per a aquest document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 executant operació @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Encaix Pàgina @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Confirma divisió @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 L'operació de divisió començarà en segon pla. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executant operació de divisió @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 La rotació començarà en segon pla. Tanqueu i torneu a obrir el document un cop finalitzada l'operació per veure els canvis. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executant operació de rotació + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Confirma esborrat + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error en executar l'operació d'eliminació de pàgines + No entries found. @@ -6906,13 +7024,21 @@ Esborra document(s) - - This operation will permanently redo OCR for selected 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 752 - Aquesta operació tornarà a fer l'OCR per document(s) seleccionats. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + Això alterarà la còpia original. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creat: + Creat: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corresponsal @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corresponsals @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Últim usat @@ -7702,7 +7792,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 67 + 88 Esborrar corresponsal ""? diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 3d4e9a82a..896713e58 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Další @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Povolit poznámky @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Oznámení @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Zpracovávání dokumentu @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,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 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nejsou definovány žádné uložené pohledy. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Uložený pohled "" odstraněn. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Stáhnout originál - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Předchozí @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Sériové číslo archivu @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Vytvořeno @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Obsah @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Upraveno @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Přidána @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Název souboru @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Původní kontrolní součet MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Původní velikost souboru @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Původní typ mime @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Kontrolní součet MD5 archivu @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Velikost souboru archivu @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadata původního dokumentu @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadata archivovaného dokumentu @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Poznámky @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Uložit a další @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Opravdu chcete smazat dokument ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Soubory tohoto dokumentu budou trvale smazány. Tuto operaci nelze vrátit zpět. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Smazat dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Smazat dokument(y) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Vytvořeno: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespondenti @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Naposledy použito @@ -7702,7 +7792,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 c73c3e063..cc74bd27a 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Næste @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikationer @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentbehandling @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Undertryk notifikationer på betjeningspanelet @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ingen gemte visninger. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gemt visning "" slettet. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Forrige @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkiv serienummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Oprettelsesdato @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Indhold @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Ændringsdato @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Tilføjelsesdato @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Filnavn for medie @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 kontrolsum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original filstørrelse @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mimetype @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiv MD5 kontrolsum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkiv filstørrelse @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original dokumentmetadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkiveret dokumentmetadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Gem & næste @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Indtast adgangskode @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Er du sikker på, at du vil slette dokument ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Filerne for dette dokument vil blive slettet permanent. Denne handling kan ikke fortrydes. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Slet dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Slet dokument(er) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Oprettet: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 801a29219..86e227da7 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Weiter @@ -549,36 +561,6 @@ 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 - - - 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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notizen aktivieren @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standardberechtigungen @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standardeigentümer @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standard-Anzeigeberechtigungen @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standard-Bearbeitungsberechtigungen @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Benachrichtigungen @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentverarbeitung @@ -1383,7 +1397,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 +1405,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,7 +1413,7 @@ 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 @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Unterdrücke Benachrichtigungen auf der Startseite @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Dokumente pro Seite @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Anzeigen als @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabelle @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Kleine Karten @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Große Karten @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Keine gespeicherten Ansichten vorhanden. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gespeicherte Ansicht „“ gelöscht. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Einstellungen wurden erfolgreich gespeichert. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Jetzt neu laden @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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,7 +2439,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 115 - Diese Aktion wird dieses Benutzerkonto dauerhaft löschen. + Dieser Vorgang wird dieses Benutzerkonto dauerhaft löschen. This operation cannot be undone. @@ -2441,18 +2451,10 @@ 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 @@ -2473,7 +2475,7 @@ src/app/components/manage/workflows/workflows.component.ts 97 - Diese Aktion kann nicht rückgängig gemacht werden. + Dieser Vorgang kann nicht rückgängig gemacht werden. Proceed @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2577,7 +2583,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 dauerhaft löschen. Deleted group @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Öffnen @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Dokumente filtern @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Keine Ergebnisse @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Dokumente @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Gespeicherte Ansichten @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Korrespondenten @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Dokumenttypen @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Speicherpfade @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Benutzer @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Gruppen @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Benutzerdefinierte Felder @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 E-Mail-Konten @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 E-Mail-Regeln @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Arbeitsabläufe @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Objekte erfolgreich aktualisiert. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Fehler beim Speichern des Objekts. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Original herunterladen - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR wiederholen + Erneut verarbeiten More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorheriges @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archiv-Seriennummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Ausstellungsdatum @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhalt @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Geändert am @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Hinzugefügt am @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media-Dateiname @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Ursprünglicher Dateiname @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5-Prüfsumme Original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dateigröße Original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 MIME-Typ Original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-Prüfsumme Archiv @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Dateigröße Archiv @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadaten Original @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadaten Archiv @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vorschau @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notizen @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Verlauf @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Speichern & weiter @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Speichern & schließen @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Kennwort eingeben @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Fehler beim Laden des Inhalts: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Dokumentänderungen erkannt @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Nächstes Dokument @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Vorheriges Dokument @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Dokument speichern @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fehler beim Abrufen der Metadaten @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fehler beim Abrufen der Vorschläge. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Möchten Sie das Dokument „“ wirklich löschen? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Dokument löschen @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Fehler beim Löschen des Dokuments - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - OCR-Wiederholung bestätigen + Erneut verarbeiten bestätigen - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Diese Aktion wird die Texterkennung für dieses Dokument wiederholen und dauerhaft überschreiben. + Dieser Vorgang wird die Archivdatei dieses Dokuments permanent neu erstellen. - - 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 + + Verarbeitung wird im Hintergrund ausgeführt. Schließe oder lade das Dokument neu, um Neuigkeiten zu sehen. Error executing operation src/app/components/document-detail/document-detail.component.ts - 830 + 842 Fehler beim Ausführen der Aktion @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Seite einpassen @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Teilung bestätigen @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Teilungsvorgang wird im Hintergrund gestartet. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Fehler beim Ausführen des Teilungsvorgangs @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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. - 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 + 1166 Der Rotationsvorgang wird im Hintergrund gestartet. Schließen und öffnen Sie das Dokument nach Abschluss des Vorgangs erneut, um die Änderungen zu sehen. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Fehler beim Ausführen des Rotationsvorgangs + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + 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 + 1191 + + Dieser Vorgang wird die ausgewählten Seiten dauerhaft 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 + 1206 + + 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 + 1215 + + Fehler beim Ausführen des Vorgangs „Seiten löschen“ + No entries found. @@ -6760,7 +6878,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 @@ -6906,13 +7024,21 @@ Dokument(e) löschen - - This operation will permanently redo OCR for selected 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 752 - Diese Aktion wird die Texterkennung für ausgewählte(s) Dokument(e) wiederholen und dauerhaft überschreiben. + Diese Aktion wird dauerhaft das/die Archiv(e) von verändern. + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + Das Archiv wird mit den aktuellen Einstellungen neu generiert. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + Dies wird die Originaldatei verändern. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Erstellt: + Ausgestellt: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 Korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 Korrespondenten @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Zuletzt benutzt @@ -7702,7 +7792,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? @@ -7904,7 +7994,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 dauerhaft löschen. Deleted mail account @@ -7952,7 +8042,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 dauerhaft löschen. Deleted mail rule diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 83bd498c7..dcd3bd823 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Επόμενο @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ενεργοποίηση σημειώσεων @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Ειδοποιήσεις @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Επεξεργασία εγγράφων @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Εμφάνιση ειδοποιήσεων όταν εντοπίζονται νέα έγγραφα @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Εμφάνιση ειδοποιήσεων όταν η επεξεργασία εγγράφου ολοκληρώνεται με επιτυχία @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Εμφάνιση ειδοποιήσεων όταν η επεξεργασία του εγγράφου αποτυγχάνει @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Καταστολή ειδοποιήσεων στο ταμπλό @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Εμφάνιση προειδοποίησης κατά το κλείσιμο αποθηκευμένων προβολών με μη αποθηκευμένες αλλαγές @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Δεν έχουν οριστεί αποθηκευμένες προβολές. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Η αποθηκευμένη προβολή "" διαγράφηκε. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Οι ρυθμίσεις αποθηκεύτηκαν με επιτυχία. Απαιτείται επαναφόρτωση για να εφαρμοστούν κάποιες αλλαγές. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Επαναφόρτωση τώρα @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Σφάλμα κατά την αποθήκευση των ρυθμίσεων στο διακομιστή. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ Επιβεβαίωση + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Προσθήκη ετικέτας + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Φιλτράρισμα εγγράφων με αυτές τις ετικέτες - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Open link - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ Λήψη πρωτότυπου - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Επανάληψη OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Προηγούμενο @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Λεπτομέρειες @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Αρχειοθέτηση σειριακού αριθμού @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Ημερομηνία δημιουργίας @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Περιεχόμενο @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Ημερομηνία τροποποίησης @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Ημερομηνία προσθήκης @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Όνομα αρχείου πολυμέσων @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Πρωτότυπο όνομα αρχείου @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Αρχικό checksum MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Αρχικό μέγεθος αρχείου @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Αρχικός τύπος mime @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Αρχειοθέτηση MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Μέγεθος αρχείου αρχειοθέτησης @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Πρωτότυπα μεταδεδομένα εγγράφου @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Αρχειοθετημένα μεταδεδομένα εγγράφου @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Προεπισκόπηση @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Αποθήκευση & επόμενο @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Αποθήκευση & κλείσιμο @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Εισαγωγή Κωδικού Πρόσβασης @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Οκ @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Σφάλμα ανάκτησης μεταδεδομένων @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Σφάλμα στην ανάκτηση προτάσεων. @@ -6344,11 +6434,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 Το έγγραφο αποθηκεύτηκε επιτυχώς. @@ -6356,11 +6446,11 @@ 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 Σφάλμα αποθήκευσης του εγγράφου @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Θέλετε πραγματικά να διαγράψετε το έγγραφο ""; @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Τα αρχεία αυτού του εγγράφου θα διαγραφούν οριστικά. Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Διαγραφή εγγράφου @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Σφάλμα διαγραφής εγγράφου - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Επιβεβαίωση επανάληψης OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Αυτή η λειτουργία θα ξανακάνει οριστικά OCR για αυτό το έγγραφο. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - Η λειτουργία επανάληψης OCR θα ξεκινήσει στο παρασκήνιο. Κλείστε και ανοίξτε εκ νέου ή επαναφορτώστε αυτό το έγγραφο μετά την ολοκλήρωση της λειτουργίας για να δείτε νέο περιεχόμενο. + 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 Σφάλμα εκτέλεσης λειτουργίας @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Διαγραφή εγγράφου(ων) - - This operation will permanently redo OCR for selected 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 752 - Αυτή η λειτουργία θα ξανακάνει οριστικά OCR για τα επιλεγμένο(α) έγγραφο(α). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Δημιουργήθηκε: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ανταποκριτής @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ανταποκριτές @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Τελευταία χρήση @@ -7702,7 +7792,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 0ed32c047..1b16e65c3 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Siguiente @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilitar notas @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permisos por defecto @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propietario por defecto @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permisos de visualización por defecto @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permisos de edición por defecto @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificaciones @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesado de documentos @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,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 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No hay ninguna vista guardada definida @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vista guardada "" borrada. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Los ajustes se han guardado correctamente. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recargar ahora @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Documento original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Rehacer OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalles @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de serie del archivo @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Fecha de creación @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenido @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Fecha de modificación @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Fecha de subida @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nombre del fichero @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nombre del archivo original @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Comprobación MD5 original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Tamaño del fichero original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo MIME original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Comprobación MD5 del archivo @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Tamaño del archivo @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadatos originales @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadatos archivados @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Vista previa @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notas @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Guardar y continuar @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Guardar & cerrar @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introducir contraseña @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Cambios de documento detectados @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Aceptar @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error al recuperar los metadatos @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error al recuperar las sugerencias. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 ¿Estás seguro de querer borrar el documento ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Borrar documento @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error al eliminar documento - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Rehacer confirmación de OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Esta operación rehará permanentemente el OCR de este documento. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Ajuste de página @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Borrar documento(s) - - This operation will permanently redo OCR for selected 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 752 - Esta operación rehará permanentemente OCR para documento(s) seleccionados. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creado: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 interlocutor @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 interlocutores @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Usado por última vez @@ -7702,7 +7792,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 6ff2d8ce6..83026701c 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Seuraava @@ -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 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 @@ -767,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 + + Laajennettu haku Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ota muistiinpanot käyttöön @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Oletusoikeudet @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Oletusomistaja @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Oletusarvoiset katseluoikeudet @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Oletusarvoiset muokkausoikeudet @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Ilmoitukset @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Asiakirjan käsittely @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Älä näytä ilmoituksia koontinäytöllä @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,11 @@ 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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Tallennettuja näkymiä ei ole määritelty. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Tallennettu näkymä "" poistettu. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Asetukset tallennettiin onnistuneesti. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Lataa uudelleen @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Virhe palvelimen asetuksia tallentaessa. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ Vahvista + + 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 + + Sivu + + + 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: @@ -3199,38 +3241,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 - - Sivu - - - 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 @@ -4868,6 +4882,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 +5011,14 @@ Lisää tunniste + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Lataa alkuperäinen - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Tee OCR uudelleen + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Edellinen @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Tarkemmat tiedot @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkistointisarjanumero @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Luontipäivä @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Sisältö @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Muokkauspäivämäärä @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Lisäyspäivämäärä @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Median tiedostonimi @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Alkuperäinen tiedoston nimi @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Alkuperäinen MD5-tarkistussumma @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Alkuperäinen tiedostokoko @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Alkuperäinen mime-tyyppi @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkistoidun MD5-tarkistussumma @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkistoidun tiedostokoko @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Alkuperäisen asiakirjan metatiedot @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkistoidun dokumentin metatiedot @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Esikatsele @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Tallenna & Lopeta @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Tallenna ja sulje @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Syötä salasana @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Virhe haettaessa metatietoja @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Virhe ehdotuksia noutaessa. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Haluatko varmasti poistaa asiakirjan ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Tämän asiakirjan tiedostot poistetaan pysyvästi. Tätä toimintoa ei voi peruuttaa. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Poista asiakirja @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Virhe asiakirjaa poistaessa - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Vahvista OCR:n uudelleenteko + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Tämä toiminto suorittaa OCR:n uudelleen. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Poista asiakirja(t) - - This operation will permanently redo OCR for selected 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 752 - Tämä toiminto tekee pysyvästi uudelleen OCR-haun valitulle dokumentille. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Luotu: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 yhteyshenkilö @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 yhteyshenkilöt @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Viimeksi käytetty @@ -7702,7 +7792,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 ""? diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 3b3529e72..af99cc2e6 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Suivant @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Activer les notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Droits d'accès par défaut @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Propriétaire par défaut @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Autorisations de consultation par défaut @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Autorisations de modification par défaut @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Traitement de documents @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Supprimer les notifications du tableau de bord @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Taille des pages des documents @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Afficher sous forme de @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tableau @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Peittes cartes @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Grandes cartes @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,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 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vue sauvegardée « » supprimée. @@ -1847,7 +1861,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 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recharger maintenant @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Ouvrir @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filtrer les documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Aucun résultat @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Vues enregistrées @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Étiquettes @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondants @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Types de document @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Chemins de stockage @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Utilisateurs @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groupes @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Champs personnalisés @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Comptes de messagerie @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Règles de courriel @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Objet mis à jour avec succès. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Une erreur s'est produite lors de la sauvegarde de l'objet. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Télécharger l'original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Relancer la ROC + Retraiter More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Précédent @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Détails @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numéro de série d'archivage (NSA) @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date de création @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenu @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date de modification @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date d'ajout @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nom de fichier du média @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nom du fichier d'origine @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Somme de contrôle MD5 de l'original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Taille du fichier original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Type MIME de l'original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Somme de contrôle MD5 de l'archive @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Taille du fichier archivé @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Métadonnées du document original @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Métadonnées du document archivé @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Prévisualisation @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historique @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Enregistrer & suivant @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Enregister & fermer @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Saisir le mot de passe @@ -6252,7 +6342,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 : @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Modifications du document détectées @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Document suivant @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Document précédent @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Enregistrer le document @@ -6328,7 +6418,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 @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Erreur lors de la récupération des suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Voulez-vous vraiment supprimer le document « » ? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Supprimer le document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Erreur lors de la suppression du document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Confirmer la relance de la ROC + Confirmer le retraitement - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Cette opération écrasera l’OCR pour ce document. + Cette action recréer définitivement le fichier d'archive 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + Le fichier d'archive va être régénérés 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Ajustement de la page @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Confirmation de la séparation @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 L’opération de séparation commencera en arrière-plan. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Erreur lors de l’exécution de l’opération de séparation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 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. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Erreur lors de l'exécution de l'opération de rotation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + 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 + 1191 + + 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 + 1206 + + 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 + 1215 + + Erreur lors de l'exécution de l'opération de suppression des pages + No entries found. @@ -6906,13 +7024,21 @@ Supprimer le(s) document(s) - - This operation will permanently redo OCR for selected 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 752 - Cette opération écrasera l’OCR pour les document(s) sélectionné(s). + Cette action recréer définitivement les fichiers d'archive pour les document(s) sélectionné(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + 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). @@ -6922,6 +7048,14 @@ 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 + 786 + + Ceci modifiera la copie originale. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Création : + Date de création : Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondant @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondants @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Dernière utilisation @@ -7702,7 +7792,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 a2d4a00f0..37059fbf4 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 הבא @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 הפעל הערות @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 הרשאות ברירת מחדל @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 בעלים מקורי @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 הרשאות ברירת מחדל עבור צפיה בקובץ @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 הרשאות ברירת מחדל עבור קובץ @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 התראות @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 עיבוד מסמך @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 הצג התראה כאשר זוהו מסמכים חדשים @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 הצג התראה כאשר עיבוד מסמך הסתיים בהצלחה @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 הצג התראה כאשר עיבוד מסמך נכשל @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 העלם התראות בעמוד הבקרה @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 הצג אזהרה כאשר סוגרים מסמך שצפינו ולא שמרנו בו שינויים @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 לא הוגדרה שמירת צפייה. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 ההגדרות נשמרו בהצלחה @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 ההגדרות נשמרו בהצלחה. נדרשת טעינה מחדש כדי להחיל שינויים מסוימים. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 טען מחדש כעת @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 שגיאה בתהליך שמירת ההגדרות בשרת @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ אשר + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ הוסף תגית + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - פתח קישור - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ הורדת קובץ המקור - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - בצע OCR בשנית + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 הקודם @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 פרטים @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 מספר סידורי בארכיון @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 תאריך יצירה @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 תוכן @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 תאריך שינוי @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 תאריך הוספה @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 שם קובץ המסמך @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 שם קובץ מקורי @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 סכום בדיקה MD5 לקובץ המקורי @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 גודל הקובץ המקורי @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 סוג ה-mime המקורי @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 סכום בדיקה MD5 לקובץ בארכיון @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 גודל הקובץ בארכיון @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 מטא-נתונים של המסמך המקורי @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 מטא-נתונים של המסמך בארכיון @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 תצוגה מקדימה @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 שמור & הבא @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 שמור & סגור @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 הזן סיסמה @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 ארעה שגיאה בטעינת התוכן: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 שגיאה באחזור נתונים @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 שגיאה באחזור הצעות. @@ -6344,11 +6434,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 מסמך נשמר בהצלחה. @@ -6356,11 +6446,11 @@ 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 שגיאה בשמירת מסמך @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 בטוח שברצנך למחוק את המסמך ? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 הקבצים עבור מסמך זה יימחקו לצמיתות. לא ניתן לבטל פעולה זו. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 מחק מסמך @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 שגיאה במחיקת מסמך - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - בצע וידוא OCR בשנית + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - פעולה זו תבצע סריקת OCR מחודשת של המסמך. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - ביצוע OCR מחדש תתחיל ברקע. סגור ופתח מחדש או רענן את המסמך לאחר שהפעולה תושלם לצפייה בתוכן החדש. + 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 שגיאת הרצה @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 התאם תצוגה לרוחב הדף @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ מחק מסמך - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 מכותב @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 מכותבים @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 שימוש אחרון @@ -7702,7 +7792,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 484bb0639..0be1a2452 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Sljedeće @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Document processing @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Dodaj oznaku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prethodni @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalji @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Serijski broj pohrane @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum izrade @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Delete document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Delete document(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 dopisnik @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 dopisnici @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 575333bb6..02ecefb4f 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Következő @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Jegyzetek engedélyezése @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Alapértelmezett engedélyek @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Alapértelmezett tulajdonos @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Alapértelmezett nézeti engedélyek @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Alapértelmezett szerkesztési engedélyek @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Értesítések @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentumfeldolgozás @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,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 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nincsenek mentett nézetek definiálva. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Mentett nézet "" törölve. @@ -1847,7 +1861,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 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Újratöltés most @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Eredeti letöltés - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Előző @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Részletek @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archívum sorszáma @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Létrehozás dátuma @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Tartalom @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Módosított dátum @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Hozzáadás dátuma @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Média fájlnév @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Eredeti fájlnév @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Eredeti MD5 ellenőrző összeg @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Eredeti fájlméret @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Eredeti mime típus @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archívum MD5 ellenőrző összege @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archivált fájl mérete @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Eredeti dokumentum metaadatai @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archivált dokumentum metaadatok @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Előnézet @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Mentés & következő @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Mentés & bezárás @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Jelszó megadása @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Hiba a metaadatok lekérdezésében @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Hiba a javaslatok lekérdezésében. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Tényleg törölni szeretné a "" dokumentumot? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 A dokumentum fájljai véglegesen törlésre kerülnek. Ez a művelet nem vonható vissza. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Dokumentum törlése @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Hiba a dokumentum törlésében - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR megerősítése + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Ez a művelet véglegesen újra elvégzi a dokumentum OCR-felismerését. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Oldal illesztése @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Dokumentum(ok) törlése - - This operation will permanently redo OCR for selected 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 752 - Ez a művelet véglegesen újra elvégzi a kiválasztott dokumentum(ok) OCR-felismerését. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Létrehozva: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 kapcsolattartó @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 kapcsolattartók @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Utoljára használt @@ -7702,7 +7792,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 76738e758..fed55063c 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Selanjutnya @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktifkan catatan @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Izin bawaan @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Pemilik Bawaan @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Izin Tampilan Bawaan @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Izin Pengeditan Bawaan @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikasi @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Memproses dokumen @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Muat ulang sekarang @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Kesalahan saat menyimpan pengaturan ke server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Tambah label + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Unduh asli - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Lakukan ulang pengenalan karakter + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Sebelumnya @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Rincian @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Nomor serial arsip @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Tanggal dibuat @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Konten @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Tanggal dimodifikasi @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Tanggal ditambahkan @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nama Berkas Media @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nama file asli @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 Asli @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Ukuran file asli @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Jenis mime asli @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Ukuran file arsip @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pratinjau @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Simpan & lanjut @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Simpan & tutup @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Masukan Kata Sandi @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Terjadi kesalahan saat memuat konten: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Kesalahan saat mendapatkan metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Apakah Anda yakin ingin menghapus dokumen ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 File untuk dokumen akan dihapus secara permanen. Operasi ini tidak dapat diurungkan. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Hapus dokumen @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Kesalahan saat menghapus dokumen - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Delete document(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 koresponden @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 koresponden @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Terahkir digunakan @@ -7702,7 +7792,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 b981c3e09..09f54f602 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Successivo @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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) + 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 + + Ricerca avanzata Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Abilita note @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permessi predefiniti @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Proprietario predefinito @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permessi predefiniti di visualizzazione @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permessi predefiniti di modifica @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifiche @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Elaborazione del documento @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Non mostrare notifiche nella dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Dimensione pagina documenti @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Visualizza come @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabella @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nessuna vista salvata. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 La vista "" è stata eliminata. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Impostazioni salvate con successo. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ricarica ora @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Apri @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filtra documenti @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Nessun risultato @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documenti @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Viste salvate @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Etichette @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Corrispondenti @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Tipi di documento @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Percorsi di archiviazione @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Utenti @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Gruppi @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Campi personalizzati @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Account email @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Regole email @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Flussi di Lavoro @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Oggetto aggiornato con successo. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Errore durante il salvataggio dell'oggetto. @@ -3163,6 +3161,50 @@ 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 + + Pages to remove + Documents: @@ -3199,38 +3241,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 @@ -4868,6 +4882,26 @@ Filtra i documenti con questo + + 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 + + Apri link + No documents found @@ -4977,6 +5011,14 @@ Aggiungi tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Filtra i documenti con queste etichette - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Apri link - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ Scarica originale - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ripeti OCR + Reprocess More like this @@ -5940,15 +6022,23 @@ Ruota + + 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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Precedente @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Dettagli @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numero seriale di archivio @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data creazione @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Contenuto @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modifica @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data aggiunta @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nome file @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nome file originale @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 originale @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dimensione file originale @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo mime originale @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Checksum MD5 archivio @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Dimensione file archivio @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadati del documento originale @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadati del documento archiviato @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Anteprima @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Note @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Cronologia @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Salva e vai al prossimo @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Salva & chiudi @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Immettere Password @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Rilevate modifiche al documento @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Documento successivo @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Documento precedente @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Salva documento @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Errore nel recupero dei metadati @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Errore durante il recupero dei suggerimenti. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Vuoi eliminare il documento ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Elimina documento @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Errore durante l'eliminazione del documento - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Conferma Ripeti OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Questa operazione effettuerà la rilettura OCR di questo documento. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 Errore nell'esecuzione dell'operazione @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Adatta Alla Pagina @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Conferma divisione @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 L'operazione di divisione inizierà in background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Errore durante l'operazione di divisione @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 L'operazione di rotazione inizierà in background. Chiudi e riapri questo documento dopo che l'operazione è stata completata per vedere i cambiamenti. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Errore nell'esecuzione dell'operazione di rotazione + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Elimina documento/i - - This operation will permanently redo OCR for selected 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 752 - Questa operazione riesegue completamente l'OCR per i documento/i selezionato/i. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + Questa azione modificherà la copia originale. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Creato il: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corrispondente @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corrispondenti @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Ultimo utilizzato @@ -7702,7 +7792,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 036432b03..f6f7a5edf 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 次のドキュメント @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 メモを有効にする @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 デフォルト権限 @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 デフォルトの所有者 @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 デフォルトの表示権限 @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 デフォルトの編集権限 @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 通知 @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 ドキュメントの処理 @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 新しいドキュメントが検出されたときに通知を表示する @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 ドキュメント処理が正常に完了したときに通知を表示する @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 ドキュメント処理が失敗したときに通知を表示する @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 ダッシュボードでの通知を抑制する @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 未保存の変更を含む保存済みビューを閉じるときに警告を表示する @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 保存済みビューは定義されていません。 @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 保存済みビュー "" を削除しました @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 設定は正常に保存されました @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 設定は正常に保存されました。変更を適用するには再読み込みが必要です。 @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 今すぐ再読み込み @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 サーバーへの設定の保存中にエラーが発生しました @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 確認 + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ タグを追加 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ これらのタグでドキュメントをフィルター - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - リンクを開く - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ 元のドキュメントをダウンロード - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR を再実行 + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 前のドキュメント @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 詳細 @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 アーカイブ番号 @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 作成日 @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 内容 @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 更新日 @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 追加日 @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 メディアファイル名 @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 元のファイル名 @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 元の MD5 チェックサム @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 元のファイルサイズ @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 元の MIME タイプ @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 アーカイブの MD5 チェックサム @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 アーカイブのファイルサイズ @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 元のドキュメントのメタデータ @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 アーカイブされたドキュメントのメタデータ @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 プレビュー @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 メモ @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 保存して次へ @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 保存して閉じる @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 パスワードを入力 @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 コンテンツ: の読み込み中にエラーが発生しました @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 ドキュメントの変更を検出しました @@ -6268,7 +6358,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 ブラウザセッション内のこのドキュメントのバージョンは、実際のバージョンより古いようです。 @@ -6276,7 +6366,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 ここでドキュメントを保存すると、その他の変更が上書きされる可能性があります。実際のバージョンに更新するには、変更を破棄するか、ドキュメントを閉じてください。 @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 OK @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 メタデータの取得に失敗しました @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 提案の取得に失敗しました @@ -6344,11 +6434,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 ドキュメントは正常に保存されました @@ -6356,11 +6446,11 @@ 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 ドキュメントの保存に失敗しました @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 ドキュメント "" を削除してもよろしいですか? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 このドキュメントのファイルは完全に削除されます。この操作は取り消すことができません。 @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 ドキュメントを削除しました @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 ドキュメントの削除に失敗しました - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - OCR を再実行しますか? + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - この操作により、このドキュメントに OCR が再実行されます + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - OCR の再実行はバックグラウンドで処理されます。処理の完了後、このドキュメントを一度閉じて再度開くか、再読み込みすることで、新しいコンテンツが表示されます。 + 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 操作の実行に失敗しました @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 ページに合わせる @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 本当に分割しますか? @@ -6468,7 +6566,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1103 + 1113 この操作により、選択したドキュメントが新しいドキュメントに分割されます @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 分割処理はバックグラウンドで開始されます @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 分割処理に失敗しました @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 この操作により、現在のドキュメントの元のバージョンが恒久的に回転します。 - - 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 + 1166 回転はバックグラウンドで開始されます。処理の完了後、このドキュメントを一度閉じて再度開くことで、変更結果を確認できます。 @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 回転処理に失敗しました + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ ドキュメントを削除 - - This operation will permanently redo OCR for selected 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 752 - この操作により、選択中の ドキュメントに OCR が再実行されます + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ この操作により、 ドキュメントの元のバージョンが恒久的に回転します。 + + This will alter the original copy. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 786 + + これは元のコピーを変更します + Merge confirm @@ -6946,18 +7080,6 @@ 結合されたドキュメントはキューに追加されます - - 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - 作成日: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 担当 @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 担当 @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 最終使用日 @@ -7702,7 +7792,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 2c17e5026..bb5fe35c9 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 다음 @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 메모 활성화 @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 기본 권한 @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 기본 열람 권한 @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 기본 편집 권한 @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 알림 @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 문서 처리중 @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 지금 새로 고침 @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 서버에 설정을 저장하는 중 오류가 발생하였습니다. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 확인 + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ 태그 추가 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Filter documents with these Tags - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - 링크 열기 - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ 원본 다운로드 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR 재수행 + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 내용 @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 미디어 파일명 @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 원본 파일명 @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 원본 MD5 체크섬 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 원본 파일 사이즈 @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 원본 MIME 타입 @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 체크섬 기록 @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 파일 사이즈 기록 @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 원본 문서 메타데이터 @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 문서 메타데이터 기록됨 @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 미리보기 @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 저장 후 다음 @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 저장 후 닫기 @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 비밀번호 입력 @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 메타데이터를 가져오는데 실패하였습니다. @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 추천을 가져오는데 실패하였습니다. @@ -6344,11 +6434,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 문서를 성공적으로 저장하였습니다. @@ -6356,11 +6446,11 @@ 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 문서를 저장하는데 오류가 발생하였습니다. @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 문서 삭제 @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 문서 삭제 오류 - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - OCR 재작업 확인 + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - 이 작업은 해당 문서에 되돌릴 수 없는 OCR재작업을 수행합니다. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - OCR 작업은 백그라운드에서 진행됩니다. 작업이 완료된 후 문서를 닫고 다시 열거나 새로고침을 하면 새로운 OCR 작업결과를 볼 수 있습니다. + 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 작업 수행중 오류가 발생하였습니다. @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 페이지 맞춤 @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ 문서 삭제 - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 659164d8c..afae24c7f 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Weider @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1167,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 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1311,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 +1347,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 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifikatiounen @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumenteveraarbechtung @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Notifikatiounen op der Startsäit ënnerdrécken @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Keng gespäichert Usiicht definéiert. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Gespäichert Usiicht "" geläscht. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Astellungen erfollegräich gespäichert. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Elo nei lueden @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Original eroflueden - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Zréck @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detailer @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archiv-Seriennummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Erstellungsdatum @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhalt @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Verännert um @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dobäigesat um @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Dateinumm vum Mediefichier @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original Dateinumm @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5-Préifzomm vum Original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dateigréisst vum Original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Urspréngleche MIME-Typ @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5-Préifzomm vum Archiv @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archiv-Dateigréisst @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadate vum Original-Dokument @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadate vum Archiv-Dokument @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Späicheren a weider @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Passwuert aginn @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Wëllt Dir d'Dokument "" wierklech läschen? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 D'Fichiere fir dëst Dokument gi permanent geläscht. Dës Operatioun kann net réckgängeg gemaach ginn. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Dokument läschen @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Dokument(er) läschen - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Erstallt: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 Korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 Korrespondenten @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Fir d'lescht benotzt @@ -7702,7 +7792,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 6edcea543..d088ed814 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Nākamā @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ieslēgt piezīmes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Noklusētās atļaujas @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Noklusētais īpašnieks @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Noklusētās skata atļaujas @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Noklusētās rediģēšanas atļaujas @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Paziņojumi @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumenta apstrāde @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Iestatījumi sekmīgi saglabāti. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Pievienot birku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Lejupielādēt oriģinālu - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Atkārtot OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Iepriekšējā @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Sīkāka informācija @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Izveides datums @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Saturs @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Labošanas datums @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Pievienošanas datums @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhīva MD5 kontrolsumma @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arhīva faila izmērs @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arhivētā dokumenta metadati @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Delete document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Delete document(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 91af4e2d0..82d4828db 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Volgende @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notities inschakelen @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standaard rechten @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standaard eigenaar @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standaard weergaverechten @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standaard bewerkingsrechten @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Meldingen @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Verwerking van documenten @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Onderdruk meldingen op het dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,31 +1669,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 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Geen opgeslagen weergaven gedefinieerd. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Opgeslagen view "" verwijderd. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Instellingen zijn succesvol opgeslagen. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Nu herladen @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Openen @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documenten @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Geen resultaten @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documenten @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Opgeslagen weergaven @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Labels @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondenten @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Documenttypes @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Opslagpaden @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Gebruikers @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groepen @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Aangepaste velden @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 E-mailaccounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 E-mailregels @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Object succesvol bijgewerkt. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Fout bij opslaan object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -3265,7 +3279,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + Zoek velden Create new field @@ -4197,7 +4211,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 +4788,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 452 - Open filter + Open filter Keyboard shortcuts @@ -4868,6 +4882,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 +5011,14 @@ Label toevoegen + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5735,7 +5817,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 20 - Current ASN + Huidige ASN Other @@ -5896,8 +5978,8 @@ Download origineel - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR opnieuw uitvoeren + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Vorige @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archief serienummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Aanmaakdatum @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Inhoud @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Wijzigingsdatum @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum toegevoegd @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media bestandsnaam @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originele bestandsnaam @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originele MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originele bestandsgrootte @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Oorspronkelijke mime-type @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archief MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archief bestandsgrootte @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Originele document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Gearchiveerde document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Voorbeeld @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notities @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Geschiedenis @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Opslaan & volgende @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Opslaan & sluiten @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Wachtwoord invoeren @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Documentwijzigingen gedetecteerd @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Volgend document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Vorig document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Document opslaan @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fout bij ophalen metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fout bij ophalen suggesties. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Wilt u het document echt verwijderen ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Verwijder document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Fout bij verwijderen document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Bevestig OCR opnieuw uitvoeren + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor dit document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Pagina passend maken @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Splitsen bevestigen @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Splits bewerking zal op de achtergrond beginnen. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Fout bij uitvoeren splits bewerking @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Roteren begint op de achtergrond. Sluit het document en open het opnieuw nadat de bewerking is voltooid om de wijzigingen te bekijken. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Fout bij uitvoeren van rotatie bewerking + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6658,7 +6776,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 143 - Archived files + Gearchiveerde bestanden Original files @@ -6666,7 +6784,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 147 - Original files + Originele bestanden Use formatted filename @@ -6848,7 +6966,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). @@ -6856,7 +6974,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). @@ -6864,7 +6982,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). @@ -6872,7 +6990,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). @@ -6880,7 +6998,7 @@ 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 @@ -6906,13 +7024,21 @@ Verwijder document(en) - - This operation will permanently redo OCR for selected 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 752 - Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor geselecteerd(e) document(en). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6920,7 +7046,15 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 785 - 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 + 786 + + Hierdoor wordt de originele kopie gewijzigd. Merge confirm @@ -6936,7 +7070,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 806 - 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. @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Aangemaakt: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondenten @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Laatst gebruikt @@ -7702,7 +7792,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 eeec5107e..3ebf247f0 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Neste @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktiver notater @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Standardtillatelser @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Standard eier @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Standard visningstillatelser @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Standard redigeringstillatelser @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Varsler @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokumentbehandling @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Skjul varsler på dashbordet @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ingen lagrede visninger definert. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Lagret visning "" slettet. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Innstillingene ble lagret. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Oppfrisk nå @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Feil ved lagring av innstillinger på serveren. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Last ned original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Gjør ny OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Forrige @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkiver serienummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Dato opprettet @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Innhold @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Dato endret @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dato lagt til @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filnavn @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Opprinnelig filnavn @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Opprinnelig MD5-sjekksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Opprinnelig filstørrelse @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Opprinnelig mimetype @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiver MD5-sjekksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkivstørrelse @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Opprinnelig dokumentmetadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkivert dokumentmetadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Forhåndsvis @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Lagre & Avslutt @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Lagre & Lukk @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Skriv inn passord @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Feil ved henting av metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Feil ved henting av forslag. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Ønsker du virkelig å slette dokumentet ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Filene til dokumentet vil bli slettet permanent. Denne operasjonen kan ikke angres. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Slett dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Gjenta OCR bekreft + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Denne operasjonen vil permanent gjenta OCR for dette dokumentet. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Slett dokument(er) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Opprettet: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Sist brukt @@ -7702,7 +7792,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 f8156467e..328350cd7 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Następny @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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) + 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 + + Wyszukiwanie zaawansowane Notes src/app/components/admin/settings/settings.component.html - 208 + 224 src/app/components/document-list/document-list.component.html @@ -1159,7 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Włącz notatki @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Domyślnie uprawnienia @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Domyślny Właściciel @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Domyślne uprawnienia do przeglądania @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Domyślne uprawnienia do edycji @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Powiadomienia @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Przetwarzanie dokumentów @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Wyłącz powiadomienia na pulpicie @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Rozmiar strony dokumentów @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Wyświetl jako @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Tabela @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Małe karty @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Duże karty @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nie zdefiniowano zapisanych widoków. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Zapisany widok "" został usunięty. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Ustawienia zapisane pomyślnie. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Załaduj ponownie @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Błąd podczas zapisywania ustawień na serwerze. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Otwórz @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filtrowanie dokumentów @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 Brak wyników @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Dokumenty @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Zapisane widoki @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tagi @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Korespondenci @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Typy dokumentów @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Ścieżki zapisu @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Użytkownicy @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Grupy @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Pola dodatkowe @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Konta pocztowe @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Reguły poczty @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Procesy @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Pomyślnie zaktualizowano obiekt. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Wystąpił błąd podczas zapisywania obiektu. @@ -3163,6 +3161,50 @@ 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 + + Pages to remove + Documents: @@ -3199,38 +3241,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 @@ -4868,6 +4882,26 @@ Filtruj dokumenty z tym + + 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 + + Otwórz link + No documents found @@ -4977,6 +5011,14 @@ Dodaj tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Pobierz oryginał - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Powtórz OCR + Reprocess More like this @@ -5940,15 +6022,23 @@ Obrót + + 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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Poprzedni @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Szczegóły @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Numer seryjny archiwum @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data utworzenia @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Zawartość @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data modyfikacji @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data dodania @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nazwa pliku @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Oryginalna nazwa pliku @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5 - Suma kontrolna Oryginału @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Rozmiar oryginalnego pliku @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Typ mime oryginału @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Suma kontrolna archiwum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Rozmiar pliku archiwalnego @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadane oryginalnego dokumentu @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadane zarchiwizowanego dokumentu @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Podgląd @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notatki @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 Historia @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Zapisz & następny @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Zapisz & zamknij @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Wprowadź hasło @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Wykryto zmiany w dokumencie @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Następny dokument @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Poprzedni dokument @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Zapisz dokument @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Błąd podczas pobierania metadanych @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Błąd podczas pobierania sugestii. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Czy na pewno chcesz usunąć dokument""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Pliki tego dokumentu zostaną trwale usunięte. Tej operacji nie można cofnąć. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Usuń dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Błąd usuwania dokumentu - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Potwierdź powtórzenie OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Ta operacja nieodwracalnie powtórzy OCR dla tego dokumentu. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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ść. + 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 Błąd podczas wykonywania operacji @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Dopasuj do strony @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Potwierdzenie podziału @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Operacja podziału rozpocznie się w tle. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Błąd podczas wykonywania operacji podziału @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Obracanie rozpocznie się w tle. Zamknij i ponownie otwórz dokument po zakończeniu operacji, aby zobaczyć zmiany. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Błąd podczas wykonywania operacji obracania + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Usuń dokument(y) - - This operation will permanently redo OCR for selected 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 752 - Ta operacja powtórzy OCR dla wybranych dokumentów. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + Spowoduje to zmianę oryginalnej kopii. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Utworzono: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespondenci @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Ostatnio używane @@ -7702,7 +7792,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 01098b864..6887e4c2d 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Próximo @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Habilitar notas @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Permissões Padrão @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Proprietário padrão @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Permissões de visualização padrão @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Permissões de edição padrão @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificações @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processamento de documentos @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,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 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nenhuma visualização definida. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Visualização "" excluída. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 As configurações foram salvas com sucesso. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarregar agora @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4869,6 +4883,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 +5012,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 +5028,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 +5700,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 @@ -5897,8 +5979,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 @@ -5907,7 +5989,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 @@ -5941,15 +6023,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5961,7 +6051,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 @@ -5969,7 +6059,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 @@ -5977,7 +6067,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 @@ -6001,7 +6091,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 @@ -6009,7 +6099,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 @@ -6017,7 +6107,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 @@ -6045,7 +6135,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 @@ -6073,7 +6163,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 @@ -6097,7 +6187,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 @@ -6105,7 +6195,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 @@ -6117,7 +6207,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 @@ -6125,7 +6215,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 @@ -6133,7 +6223,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 @@ -6141,7 +6231,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 @@ -6149,7 +6239,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 @@ -6157,7 +6247,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 @@ -6165,7 +6255,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 @@ -6173,7 +6263,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 @@ -6181,7 +6271,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 @@ -6189,7 +6279,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 @@ -6197,7 +6287,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 @@ -6205,7 +6295,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 @@ -6213,7 +6303,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 @@ -6221,7 +6311,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 @@ -6229,7 +6319,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 @@ -6237,7 +6327,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 @@ -6245,7 +6335,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 @@ -6253,7 +6343,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: @@ -6261,7 +6351,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 @@ -6269,7 +6359,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. @@ -6277,7 +6367,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. @@ -6285,7 +6375,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 @@ -6293,7 +6383,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 @@ -6301,7 +6391,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 @@ -6309,7 +6399,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 @@ -6321,7 +6411,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 @@ -6329,7 +6419,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 @@ -6337,7 +6427,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. @@ -6345,11 +6435,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. @@ -6357,11 +6447,11 @@ 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 @@ -6369,7 +6459,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6385,7 +6475,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Você realmente deseja excluir o documento ""? @@ -6393,7 +6483,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. @@ -6401,7 +6491,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Excluir documento @@ -6409,43 +6499,51 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Refazer OCR confirmar + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Esta operação irá refazer o OCR permanentemente para este documento. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6453,7 +6551,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 @@ -6461,7 +6559,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 @@ -6469,7 +6567,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. @@ -6477,7 +6575,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 + 1128 A operação de divisão iniciará em segundo plano. @@ -6485,7 +6583,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 + 1137 Erro ao executar a operação de divisão @@ -6493,7 +6591,7 @@ 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 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6505,27 +6603,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 + 1150 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 + 1166 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. @@ -6533,10 +6619,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 + 1178 Erro ao executar operação de rotação + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6907,13 +7025,21 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Apagar documento(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6923,6 +7049,14 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc 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 + 786 + + Isso irá alterar a versão original. + Merge confirm @@ -6947,18 +7081,6 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc 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 @@ -6979,40 +7101,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 @@ -7025,7 +7115,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: @@ -7679,7 +7769,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 @@ -7687,7 +7777,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 @@ -7695,7 +7785,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 @@ -7703,7 +7793,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 f88fec72c..771329120 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Seguinte @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Ativar notas @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificações @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Processamento de documentos @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Não mostrar notificações no dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nenhuma vista gravada definida. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Visualização "" apagada. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 As configurações foram guardadas com sucesso. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Recarregar agora @@ -1871,7 +1885,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 +1897,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. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Adicionar etiqueta + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Baixar original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Repetir OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Anterior @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalhes @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Número de série de arquivamento @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data de criação @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Conteúdo @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data de modificação @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data de adição @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Nome do ficheiro @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Nome original do ficheiro @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Checksum MD5 original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Tamanho do ficheiro original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tipo mime original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Checksum MD5 do arquivo @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Tamanho do arquivo @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadados do documento original @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadados do documento arquivado @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pré-Visualizar @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Guardar & próximo @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Gravar e fechar @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Introduzir Palavra-Passe @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Erro ao obter os metadados @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Erro ao obter sugestões. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Tem a certeza que quer apagar o documento ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Os ficheiros deste documento serão excluídos permanentemente. Esta operação não pode ser revertida. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Apagar documento @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Confirmar a repetição do OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Esta operação irá refazer permanentemente o OCR para este documento. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Apagar documento(s) - - This operation will permanently redo OCR for selected 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 752 - Esta operação irá refazer o OCR permanentemente para documento(s) selecionado(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Criado: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondente @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondentes @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Última utilização @@ -7702,7 +7792,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 b2acc67a8..b242a2e57 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Următor @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notificări @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesarea documentelor @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Ascunde notificările pe tabloul de bord @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nu sunt definite vizualizări. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Vizualizarea "" a fost ștearsă. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Adaugă etichetă + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Descarcă originalul - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalii @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Număr serial în arhivă @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Data creării @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Conținut @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Data ultimei modificări @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Data adăugării @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Numele fișierului media @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 MD5 original @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Dimensiunea fișierului original @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Tip MIME original @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 arhivă @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Mărimea arhivei @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadatele documentului original @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadatele documentului arhivat @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Salvează și continuă @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Sunteţi sigur că doriţi să ştergeţi documentul ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Șterge document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Șterge document(e) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - S-a creat: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 corespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 corespondenți @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 f96e14262..a546179ff 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Следующий @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Включить заметки @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Права по умолчанию @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Владелец по умолчанию @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Разрешения на просмотр по умолчанию @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Разрешения на редактирование по умолчанию @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Уведомления @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обработка документа @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показывать уведомления при обнаружении новых документов @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показывать уведомления, когда обработка документа успешна @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показывать уведомления, когда обработка документа не удалась @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Спрятать уведомления на главной @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показывать предупреждение при закрытии сохраненных видов с несохраненными изменениями @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Нет сохраненных представлений. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Сохраненное представление "" удалено. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Настройки успешно сохранены. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Настройки успешно сохранены. Для применения некоторых изменений необходимо перезагрузить. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перезагрузить @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Ошибка при сохранении настроек на сервере. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ Подтвердить + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Добавить тег + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Фильтровать документы с этими этикетами - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Открыть ссылку - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ Скачать оригинал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторить распознавание + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Предыдущий @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Детали @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Архивный номер (АН) @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата создания @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Содержимое @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата изменения @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата добавления @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Имя файла @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Исходное имя файла @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригинальная MD5 сумма @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Размер оригинального файла @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригинальный MIME тип @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 сумма архива @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Размер архива @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Метаданные оригинального документа @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метаданные архивного документа @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Предпросмотр @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Примечания @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Сохранить & следующий @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Сохранить & закрыть @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Введите пароль @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Произошла ошибка при загрузке контента: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Обнаружены изменения документа @@ -6268,7 +6358,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 Версия этого документа в вашем браузере появляется старше существующей версии. @@ -6276,7 +6366,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 Сохранение документа здесь может привести к перезаписи внесенных изменений. Чтобы восстановить существующую версию, отмените изменения или закройте документ. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Хорошо @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Ошибка при получении метаданных @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Ошибка при получении предложений. @@ -6344,11 +6434,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 Документ успешно сохранён. @@ -6356,11 +6446,11 @@ 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 Ошибка при сохранении документа @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Вы действительно хотите удалить документ ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Удалить документ @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Ошибка удаления документа - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Подтверждение повторного распознавания + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Это действие перезапишет результаты распознавания текста для этого документа. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 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 Ошибка при выполнении операции @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Вместить страницу @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Удалить документ(ы) - - This operation will permanently redo OCR for selected 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 752 - Эта операция повторит распознавание для выбранного(ых) документа(ов). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Создано: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 корреспондент @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 корреспонденты @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Последний использованный @@ -7702,7 +7792,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 80c288844..5d2b821f7 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -279,7 +279,7 @@ src/app/app.component.ts 92 - Document was added to Paperless-ngx. + Dokument bol pridaný do paperless. Open document @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -307,7 +319,7 @@ src/app/app.component.ts 122 - Document is being processed by Paperless-ngx. + Dokument je spracovávaný v paperless. Dashboard @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Ďalší @@ -479,7 +491,7 @@ 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. @@ -487,7 +499,7 @@ src/app/app.component.ts 212 - 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. @@ -507,7 +519,7 @@ src/app/app.component.ts 228 - 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! 🙏 @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Povoliť poznámky @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Upozornenia @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Spracovanie dokumentu @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Nezobrazovať upozornenia na hlavnej obrazovke @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nie su uložené žiadne pohľady. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Uložený pohľad "" odstránený. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Nastavenia boli úspešne uložené. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Načítať @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Chyba pri ukladaní nastavení na server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Stiahnuť originál - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Zopakovať OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Predchádzajúci @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Sériové číslo archívu @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Vytvorené @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Obsah @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Dátum úpravy @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Dátum pridania @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Názov súboru médií @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originál - názov @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originál - MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originál - veľkosť @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Pôvodný MIME typ @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archív - MD5 @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archív - veľkosť @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metadáta originálu @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metadáta archívu @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Náhľad @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Uložiť & nasledujúci @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Uložiť & zatvoriť @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Zadajte Heslo @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Chyba pri získavaní metadát @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Chyba pri získavaní odporúčaní. @@ -6344,11 +6434,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ý. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Naozaj si želáte vymazať dokument ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Súbory tohto dokumentu budú trvalo odstránené. Túto akciu nie je možné vrátiť. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Zmazať dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Potvrdiť opakované OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Táto akcia vykoná opakované OCR dokumentu a natrvalo zmaže pôvodné. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Odstrániť dokumenty - - This operation will permanently redo OCR for selected 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 752 - Táto akcia vykoná opakované OCR pre vybrané dokumenty. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Vytvorený: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korešpondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korešpondenti @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Naposledy použité @@ -7702,7 +7792,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 842bea47f..8eafa7dbc 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Naslednji @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Vklopi zapiske @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Privzeta dovoljenja @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Privzeti lastnik @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Privzeta dovoljenja za vpogled @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Privzeta dovoljenja za urejanje @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Obvestila @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Obdelava dokumentov @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Preprečite obvestila na pregledni strani @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Ni določenih shranjenih pogledov. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Shranjen pogled "" je izbrisan. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Nastavitve uspešno shranjene. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ponovno zaženi @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Napaka pri shranjevanju nastavitev na strežnik. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Dodaj oznako + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Prenesi izvirnik - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ponovno naredi OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prejšnji @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Podrobnosti @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arhivska serijska številka @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum nastanka @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Vsebina @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum spremembe @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum vnosa @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Ime medijske datoteke @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Izvirno ime datoteke @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Izvirni MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Izvirna velikost datoteke @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Izvirna mime vrsta @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhiviran MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Velikost arhivske datoteke @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Izvirni metapodatki dokumenta @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arhivirani metapodatki dokumenta @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Predogled @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Shrani & naslednjo @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Shrani & zapri @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Vnesi geslo @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Napaka pri nalaganju vsebine: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 V redu @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Napaka pri pridobivanju metapodatkov @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Napaka pri pridobivanju priporočil. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Ali res želite izbrisati dokument ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Datoteke za ta dokument bodo trajno izbrisane. Te operacije ni mogoče razveljaviti. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Izbriši dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Napaka pri brisanju dokumenta - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Potrdi ponovno izdelavo OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Ta izbira bo permanentno izvedla ponovni OCR na tem dokumentu. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Izbriši dokument(e) - - This operation will permanently redo OCR for selected 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 752 - Ta operacija bo trajno obnovila OCR za izbrane dokumente. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Ustvarjeno: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 dopisnik @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 dopisniki @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Nazadnje uporabljen @@ -7702,7 +7792,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 c625aa1bd..ff7cafd56 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Sledeći @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -837,7 +819,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 +839,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Status sistema Open Django Admin @@ -1073,7 +1055,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Uređivanje dokumenata Automatically remove inbox tag(s) on save @@ -1081,7 +1063,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 @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Omogući beleške @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Podrazumevane dozvole @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Podrazumevani vlasnik @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Podrazumevane dozvole za prikaz @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Podrazumevane dozvole za uređivanje @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Obaveštenja @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Procesiranje dokumenata @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Poništi obaveštenja na kontrolnoj tabli @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,63 +1669,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Nema definisanih sačuvanih pogleda. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Sačuvan pogled "" je obrisan. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Podešavanja su uspešno sačuvana. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Sad ponovo učitaj @@ -1871,7 +1885,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 +1897,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. @@ -2121,7 +2135,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Neuspješno Complete @@ -2129,7 +2143,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Završeno Started @@ -2137,7 +2151,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Započeto Queued @@ -2145,7 +2159,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Planirano Dismiss selected @@ -2233,7 +2247,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 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2601,7 +2607,7 @@ src/app/components/app-frame/app-frame.component.html 20 - by Paperless-ngx + od Paperless-ngx Logged in as @@ -2789,7 +2795,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + Procesi Mail @@ -2821,7 +2827,7 @@ src/app/components/app-frame/app-frame.component.html 237 - Configuration + Konfiguracija GitHub @@ -2901,45 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 - Open + Otvori Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 - Filter documents + Filtriraj dokumente Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,115 +2965,115 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 - No results + Nema rezultata Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 - Documents + Dokumenti Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 - Saved Views + Sačuvani Prikazi Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 - Tags + Oznake Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 - Correspondents + Dopisnici Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 - Document types + Vrste dokumenata Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 - Storage paths + Putanje za skladištenje Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 - Users + Korisnici Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 - Groups + Grupe Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 - Custom fields + Prilagođena polja Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 - Mail accounts + Nalozi elektronske pošte Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 - Mail rules + Pravila elektronske pošte Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 - Workflows + Procesi Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Dodaj oznaku + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Preuzmi original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Ponovi OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Prethodni @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detalji @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arhivski serijski broj (ASN) @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum kreiranja @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Sadržaj @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum izmene @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum dodavanja @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Naziv fajla @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Originalno ime fajla @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Originalni MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Originalna veličina fajla @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Originalni MIME tip @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arhivni MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arhivna veličina fajla @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Metapodaci originalnog dokumenta @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Metapodaci arhivnog dokumenta @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Pregled @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Sačuvaj & sledeći @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Sačuvaj i zatvori @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Unesite lozinku @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Greška pri preuzimanju metapodataka @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Greška pri preuzimanju predloga. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Da li stvarno želite da obrišite dokument ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Fajlovi za ovaj dokument će biti trajno obrisani. Ova operacija se ne može opozvati. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Obriši dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Greška prilikom brisanja dokumenta - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Ponovi OCR potvrda + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Ova će operacija trajno ponoviti OCR za ovaj dokument. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Uklopi stranu @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Obriši dokument(e) - - This operation will permanently redo OCR for selected 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 752 - Ova radnja će trajno ponoviti OCR za selektovan(a) dokument(a). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Kreirano: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korespodent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korespodenti @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Poslednje korišćenje @@ -7702,7 +7792,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 9cd5dd601..1afe38c4a 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Nästa @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Aktivera anteckningar @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifieringar @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Dokument bearbetas @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Förhindra aviseringar på instrumentpanelen @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Inga sparade vyer har definierats. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Sparad vy "" borttagen. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Inställningarna sparades. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Ladda om @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Kunde inte spara inställningarna på servern. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,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 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Ladda ner original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Gör om OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Föregående @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Detaljer @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arkivets serienummer @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Datum skapad @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Innehåll @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Datum ändrad @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Datum tillagd @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filnamn @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Ursprungligt filnamn @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5-kontrollsumma @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Ursprunglig filstorlek @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Ursprunglig mime-typ @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arkiv MD5-kontrollsumma @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arkiv filstorlek @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Ursprungliga dokument metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arkiverade dokument metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Förhandsgranska @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Spara & nästa @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Spara & stäng @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Ange lösenord @@ -6252,7 +6342,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: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Fel vid hämtning av metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Fel vid hämtning av förslag. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Vill du verkligen ta bort dokumentet ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Filerna för detta dokument kommer att raderas permanent. Den här åtgärden kan inte ångras. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Ta bort dokument @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Bekräfta upprepning av OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Den här åtgärden kommer permanent att göra om OCR läsningen för detta dokument. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Ta bort dokument - - This operation will permanently redo OCR for selected 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 752 - Den här åtgärden kommer permanent göra om OCR inläsningen för valda dokument. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Skapad: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 korrespondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 korrespondenter @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Senast använd @@ -7702,7 +7792,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 737214b0b..84ce3a617 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 ต่อไป @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 เปิดใช้หมายเหตุ @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 การแจ้งเตือน @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 การประมวลผลเอกสาร @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 โหลดใหม่เดี๋ยวนี้ @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ ยืนยัน + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ เพิ่มแท็ก + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ ดาวน์โหลดต้นฉบับ - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - OCR ใหม่ + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 ก่อนหน้า @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 รายละเอียด @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 รหัสการจัดเก็บถาวร @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 วันที่สร้าง @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 เนื้อหา @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 วันที่แก้ไข @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 วันที่เพิ่ม @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 ชื่อไฟล์สื่อ @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 ชื่อไฟล์ต้นฉบับ @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 ขนาดไฟล์เดิม @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 MIME Type ของไฟล์เดิม @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 MD5 checksum ของไฟล์เก็บถาวร @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 ขนาดไฟล์เก็บถาวร @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 ตัวอย่าง @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 บันทึก & ถัดไป @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 บันทึก & ปิด @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 กรอกรหัสผ่าน @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 ลบเอกสาร @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 เกิดข้อผิดพลาดในการลบเอกสาร - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - ยืนยันให้ OCR ใหม่ + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ ลบเอกสาร - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ผู้เขียน @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ผู้เขียน @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 ใช้งานล่าสุด @@ -7702,7 +7792,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 ecbac52ac..95e24b937 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Sonraki @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Notları etkinleştir @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Varsayılan İzinler @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Varsayılan Sahip @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Varsayılan Görüntüleme İzinleri @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Varsayılan Değiştirme İzinleri @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Bildirimler @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Belge işleme @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Kontrol panodaki bildirimleri bastır @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Kaydedilmiş görünüm tanımlanmadı. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 adlı görünüm silindi. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Ayarlar başarıyla kaydedildi. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Şimdi yenile @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Ayarlar sunucuda saklanırken hata oluştu. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Etiket ekle + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Orijinal Dosyayı İndir - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Yeniden OCR (Optik Karakter Tanıma) yap + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Önceki @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Ayrıntılar @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Arşiv seri numarası @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Oluşturma tarihi @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Içerik @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Değiştirilme tarihi @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Ekleme tarihi @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Medya dosya ismi @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Orjinal dosya adı @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Orijinal MD5 sağlama toplamı @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Orijinal dosya boyutu @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Orijinal mime türü @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Arşiv MD5 sağlama toplamı @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Arşiv dosya boyutu @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Orijinal belge meta verisi @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Arşivlenen belge meta verileri @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Ön İzleme @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Kaydet & sonraki @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Parolayı girin @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Metaveri alınırken hata oluştu @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Önerileri getirirken hata oluştu. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 "" olan belgeyi gerçekten silmek istiyormusunuz? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Bu belgeye ait dosyalar kalıcı olarak siliniecektir. Bu işlem geri alınamaz. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Belgeyi sil @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Belge(yi/leri) sil - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Oluşturulan: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 ek yazar @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 ek yazarlar @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 0513e9799..e1498c062 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Далі @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -857,7 +839,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Стан системи Open Django Admin @@ -1073,7 +1055,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Редактор документів Automatically remove inbox tag(s) on save @@ -1081,7 +1063,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + Автоматично прибирати теги вхідних повідомлень Bulk editing @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Увімкнути нотатки @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Типові дозволи @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Власник за замовчуванням @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Дозволи перегляду за умовчанням @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Дозволи на редагування за замовчуванням @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Сповіщення @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Обробка документа @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 Показувати сповіщення, коли виявлено нові документи @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 Показувати сповіщення після успішної обробки документа @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 Показувати сповіщення, коли не вдається обробити документ @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Заховати сповіщення на головній @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 Показувати попередження під час закриття представлень з незбереженими змінами @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,63 +1669,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 Немає збережених представлень. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Збережене представлення було "" видалено. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Налаштування успішно збережено. @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 Налаштування успішно збережені. Оновіть сторінку для застосування змін. @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Перезавантажити зараз @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Помилка при збереженні налаштувань на сервері. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,45 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 - Open + Відкрити Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 - Filter documents + Фільтрувати документи Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,129 +2965,129 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 - No results + Нічого не знайдено Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 - Documents + Документи Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 - Saved Views + Vues sauvegardées Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 - Tags + Теги Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 - Correspondents + Кореспонденти Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 - Document types + Типи документів Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 - Storage paths + Шляхи зберігання Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 - Users + Користувачі Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 - Groups + Групи Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 - Custom fields + Власні поля Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 - Mail accounts + Поштові скриньки Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 - Mail rules + Правила пошти Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 - Workflows + Робочі процеси Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 - Successfully updated object. + Об'єкт успішно оновлено. Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 - Error occurred saving object. + Помилка при збереженні об’єкта. Clear @@ -3121,7 +3119,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + Ви впевнені? Confirmation @@ -3163,48 +3161,12 @@ Підтвердити - - 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 +3183,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 +3195,55 @@ 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 + + Повторно створити всі метадані + + + Note that only PDFs will be included. + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 30 + + Зверніть увагу, що будуть включені тільки 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 +3251,7 @@ src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 28 - Add Split + Додати частину View @@ -3265,7 +3279,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + Пошук полів Create new field @@ -3273,7 +3287,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 21 - Create new field + Створити нове поле Saved field "". @@ -4189,7 +4203,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Admin + Адміністратор Access logs, Django backend @@ -4197,7 +4211,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 +4503,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - Remove tags + Вилучити позначки Remove all @@ -4521,7 +4535,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - Remove all + Видалити всі Remove correspondents @@ -4529,7 +4543,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - Remove correspondents + Видалити всіх кореспондентів Remove document types @@ -4537,7 +4551,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 228 - Remove document types + Видалити всі типи документів Remove storage paths @@ -4545,7 +4559,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 234 - Remove storage paths + Видалити всі шляхи зберігання Remove custom fields @@ -4553,7 +4567,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 240 - Remove custom fields + Вилучити власне поле Remove owners @@ -4868,6 +4882,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 +5011,14 @@ Додати тег + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,6 @@ Фільтрувати документи за цими тегами - - Open link - - src/app/components/common/input/url/url.component.html - 14 - - Відкрити посилання - What's this? @@ -5665,6 +5699,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 @@ -5896,8 +5978,8 @@ Завантажити оригінал - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Повторити OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Попередній @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Деталі @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Архівний серійний номер @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Дата створення @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Вміст @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Дата зміни @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Дата додавання @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Назва медіафайлу @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Оригінальна назва файлу @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Оригінальна контрольна сума MD5 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Оригінальний розмір файлу @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Оригінальний тип MIME @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Контрольна сума MD5 архіву @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Розмір архіву @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Метадані оригінального документа @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Метадані архівованого документа @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Попередній перегляд @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Примітки @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Зберегти та перейти до наступного @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Зберегти та закрити @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Введіть пароль @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 Під час завантаження вмісту сталася помилка: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Зміни документу виявлено @@ -6268,7 +6358,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 Версія цього документа виявилась старішою за чинну версію. @@ -6276,7 +6366,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 Збереження документа може перезаписати інші внесені зміни. Щоб відновити наявну версію, скасуйте зміни або закрийте документ. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Гаразд @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Помилка отримання метаданих @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Помилка при отриманні пропозицій. @@ -6344,11 +6434,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 Документ успішно збережено. @@ -6356,11 +6446,11 @@ 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 Помилка при збереженні документа @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Ви дійсно хочете видалити документ ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 Файли для цього документа будуть видалені назавжди. Цю операцію неможливо скасувати. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Видалити документ @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Помилка видалення документа - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Підтвердьте повторення OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Ця операція перезапише результат OCR для цього документа. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - Повторна операція OCR розпочнеться у фоновому режимі. Для того, щоб побачити оновлений вміст перевідкрийте документ або перезавантажте сторінку з цим документом після того, як операція завершиться. + 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 Помилка виконання операції @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Вмістити сторінку @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Видалити документ(и) - - This operation will permanently redo OCR for selected 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 752 - Ця операція перезапише результат OCR для вибраних документів. + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Створено: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 кореспондент @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 кореспонденти @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Востаннє використано @@ -7702,7 +7792,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 51b4b4b0f..eb0d7c448 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Tiếp @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Bật ghi chú @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Quyền hạn mặc định @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Quyền xem mặc định @@ -1267,11 +1281,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 +1317,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 +1353,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 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Thông báo @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Đang được xử lý tài liệu @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,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 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,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 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Chế độ lưu "" đã được xóa. @@ -1847,7 +1861,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 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Tải lại ngay @@ -1871,7 +1885,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 +1897,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ủ. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Add tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Delete document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Xác nhận lại OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - Xác nhận này sẽ làm lại vĩnh viễn OCR cho tài liệu này. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Delete document(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 f8e53ab30..186da3bad 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 下一个 @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 启用备注 @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 默认权限 @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 默认所有者 @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 默认查看权限 @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 默认编辑权限 @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 通知 @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 文档处理 @@ -1383,7 +1397,7 @@ Show notifications when new documents are detected src/app/components/admin/settings/settings.component.html - 309 + 325 检测到新文档时显示通知 @@ -1391,7 +1405,7 @@ Show notifications when document processing completes successfully src/app/components/admin/settings/settings.component.html - 310 + 326 文件处理成功完成时显示通知 @@ -1399,7 +1413,7 @@ Show notifications when document processing fails src/app/components/admin/settings/settings.component.html - 311 + 327 文件处理失败时显示通知 @@ -1407,7 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 禁用在仪表盘上的通知 @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,7 @@ Show warning when closing saved views with unsaved changes src/app/components/admin/settings/settings.component.html - 326 + 342 关闭未保存的视图时显示警告 @@ -1443,7 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 未定义保存的视图。 @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 保存的视图已删除。 @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 设置保存成功 @@ -1855,7 +1869,7 @@ Settings were saved successfully. Reload is required to apply some changes. src/app/components/admin/settings/settings.component.ts - 557 + 565 设置已成功保存。需要重新加载以应用某些更改。 @@ -1863,7 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 立即重载 @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 在服务器上存储设置时出错。 @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 确认 + + 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ 添加标签 + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ 下载原始文件 - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - 重新 OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 上一个 @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 详细信息 @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 归档序列号 @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 创建日期 @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 内容 @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 修改日期 @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 日期已添加 @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 媒体文件名 @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 原文件名 @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 原始 MD5 校验和 @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 原始文件大小 @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 原始 mime 类型 @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 归档 MD5 校验和 @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 归档文件大小 @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 原始文档元数据 @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 归档文档元数据 @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 预览 @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 保存 & 下一个 @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 保存并关闭 @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 输入密码 @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 加载内容时出错: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 获取元数据时出错 @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 获取建议时出错。 @@ -6344,11 +6434,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 文档已成功保存。 @@ -6356,11 +6446,11 @@ 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 保存文档出错 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 您真的想要删除文档 “” 吗? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 此文档的文件将被永久删除。此操作无法撤消。 @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 删除文档 @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 删除文档出错。 - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - 确定重新 OCR + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - 此操作将为此文档永久重做OCR。 + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 重做OCR 操作将在后台开始。关闭并在操作完成后重新打开或重新加载此文档以查看新内容。 + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 适应页面 @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ 删除文档 - - This operation will permanently redo OCR for selected 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 752 - 此操作将永久重新 OCR 个选定的文档。 + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - 创建: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 联系人 @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 联系人 @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 最后使用 @@ -7702,7 +7792,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 9aa7a7c8b..6521bc2fb 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -287,6 +287,18 @@ src/app/app.component.ts 85 + + 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 73 @@ -377,7 +389,7 @@ src/app/components/admin/settings/settings.component.html - 323 + 339 src/app/components/app-frame/app-frame.component.html @@ -409,7 +421,7 @@ src/app/components/document-detail/document-detail.component.html - 91 + 95 Next @@ -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,7 +749,7 @@ src/app/components/admin/settings/settings.component.html - 391 + 407 src/app/components/admin/tasks/tasks.component.html @@ -803,7 +785,7 @@ src/app/components/document-detail/document-detail.component.html - 342 + 346 src/app/components/document-list/document-list.component.html @@ -1123,23 +1105,55 @@ src/app/components/app-frame/global-search/global-search.component.ts - 93 + 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 +1173,7 @@ Enable notes src/app/components/admin/settings/settings.component.html - 212 + 228 Enable notes @@ -1167,7 +1181,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 +1197,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 +1237,7 @@ Default Permissions src/app/components/admin/settings/settings.component.html - 223 + 239 Default Permissions @@ -1231,7 +1245,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 +1253,7 @@ Default Owner src/app/components/admin/settings/settings.component.html - 234 + 250 Default Owner @@ -1247,7 +1261,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 +1273,7 @@ Default View Permissions src/app/components/admin/settings/settings.component.html - 243 + 259 Default View Permissions @@ -1267,11 +1281,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 +1317,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 +1353,7 @@ Default Edit Permissions src/app/components/admin/settings/settings.component.html - 270 + 286 Default Edit Permissions @@ -1347,7 +1361,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 +1381,7 @@ Notifications src/app/components/admin/settings/settings.component.html - 302 + 318 Notifications @@ -1375,7 +1389,7 @@ Document processing src/app/components/admin/settings/settings.component.html - 305 + 321 Document processing @@ -1383,7 +1397,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 +1405,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 +1413,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 +1421,7 @@ Suppress notifications on dashboard src/app/components/admin/settings/settings.component.html - 312 + 328 Suppress notifications on dashboard @@ -1415,7 +1429,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 +1437,7 @@ Saved views src/app/components/admin/settings/settings.component.html - 320 + 336 src/app/components/app-frame/app-frame.component.html @@ -1435,7 +1449,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 +1457,7 @@ Views src/app/components/admin/settings/settings.component.html - 330 + 346 src/app/components/document-list/document-list.component.html @@ -1455,7 +1469,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 +1481,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,7 +1493,7 @@ Actions src/app/components/admin/settings/settings.component.html - 351 + 367 src/app/components/admin/tasks/tasks.component.html @@ -1543,7 +1557,7 @@ Delete src/app/components/admin/settings/settings.component.html - 353 + 369 src/app/components/admin/users-groups/users-groups.component.html @@ -1655,7 +1669,7 @@ Documents page size src/app/components/admin/settings/settings.component.html - 364 + 380 Documents page size @@ -1663,7 +1677,7 @@ Display as src/app/components/admin/settings/settings.component.html - 367 + 383 Display as @@ -1671,7 +1685,7 @@ Table src/app/components/admin/settings/settings.component.html - 369 + 385 Table @@ -1679,7 +1693,7 @@ Small Cards src/app/components/admin/settings/settings.component.html - 370 + 386 Small Cards @@ -1687,7 +1701,7 @@ Large Cards src/app/components/admin/settings/settings.component.html - 371 + 387 Large Cards @@ -1695,7 +1709,7 @@ Show src/app/components/admin/settings/settings.component.html - 375 + 391 src/app/components/document-list/document-list.component.html @@ -1707,11 +1721,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 +1733,7 @@ No saved views defined. src/app/components/admin/settings/settings.component.html - 384 + 400 No saved views defined. @@ -1727,7 +1741,7 @@ Cancel src/app/components/admin/settings/settings.component.html - 404 + 420 src/app/components/common/confirm-dialog/confirm-dialog.component.ts @@ -1815,7 +1829,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 +1841,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 +1853,7 @@ Saved view "" deleted. src/app/components/admin/settings/settings.component.ts - 423 + 427 Saved view "" deleted. @@ -1847,7 +1861,7 @@ Settings were saved successfully. src/app/components/admin/settings/settings.component.ts - 553 + 561 Settings were saved successfully. @@ -1855,7 +1869,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 +1877,7 @@ Reload now src/app/components/admin/settings/settings.component.ts - 558 + 566 Reload now @@ -1871,7 +1885,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 +1897,7 @@ Error while storing settings on server. src/app/components/admin/settings/settings.component.ts - 602 + 610 Error while storing settings on server. @@ -2299,20 +2313,16 @@ src/app/components/app-frame/global-search/global-search.component.html - 55 + 59 src/app/components/app-frame/global-search/global-search.component.html - 72 + 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 @@ -2441,18 +2451,10 @@ 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 @@ -2487,15 +2489,19 @@ 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 + 1151 + + + src/app/components/document-detail/document-detail.component.ts + 1192 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2901,29 +2907,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 - 23 + 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 - 49 + 53 src/app/components/app-frame/global-search/global-search.component.html - 52 + 56 Open @@ -2931,7 +2929,7 @@ Filter documents src/app/components/app-frame/global-search/global-search.component.html - 58 + 62 Filter documents @@ -2939,7 +2937,7 @@ Download src/app/components/app-frame/global-search/global-search.component.html - 69 + 73 src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -2967,7 +2965,7 @@ No results src/app/components/app-frame/global-search/global-search.component.html - 83 + 87 No results @@ -2975,7 +2973,7 @@ Documents src/app/components/app-frame/global-search/global-search.component.html - 86 + 90 Documents @@ -2983,7 +2981,7 @@ Saved Views src/app/components/app-frame/global-search/global-search.component.html - 92 + 96 Saved Views @@ -2991,7 +2989,7 @@ Tags src/app/components/app-frame/global-search/global-search.component.html - 99 + 103 Tags @@ -2999,7 +2997,7 @@ Correspondents src/app/components/app-frame/global-search/global-search.component.html - 106 + 110 Correspondents @@ -3007,7 +3005,7 @@ Document types src/app/components/app-frame/global-search/global-search.component.html - 113 + 117 Document types @@ -3015,7 +3013,7 @@ Storage paths src/app/components/app-frame/global-search/global-search.component.html - 120 + 124 Storage paths @@ -3023,7 +3021,7 @@ Users src/app/components/app-frame/global-search/global-search.component.html - 127 + 131 Users @@ -3031,7 +3029,7 @@ Groups src/app/components/app-frame/global-search/global-search.component.html - 134 + 138 Groups @@ -3039,7 +3037,7 @@ Custom fields src/app/components/app-frame/global-search/global-search.component.html - 141 + 145 Custom fields @@ -3047,7 +3045,7 @@ Mail accounts src/app/components/app-frame/global-search/global-search.component.html - 148 + 152 Mail accounts @@ -3055,7 +3053,7 @@ Mail rules src/app/components/app-frame/global-search/global-search.component.html - 155 + 159 Mail rules @@ -3063,7 +3061,7 @@ Workflows src/app/components/app-frame/global-search/global-search.component.html - 162 + 166 Workflows @@ -3071,11 +3069,11 @@ Successfully updated object. src/app/components/app-frame/global-search/global-search.component.ts - 182 + 193 src/app/components/app-frame/global-search/global-search.component.ts - 220 + 231 Successfully updated object. @@ -3083,11 +3081,11 @@ Error occurred saving object. src/app/components/app-frame/global-search/global-search.component.ts - 185 + 196 src/app/components/app-frame/global-search/global-search.component.ts - 223 + 234 Error occurred saving object. @@ -3163,6 +3161,50 @@ 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: @@ -3199,38 +3241,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 @@ -4868,6 +4882,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 +5011,14 @@ Add tag + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 20 + + Remove tag + Filter documents with these Tags @@ -4985,14 +5027,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 +5699,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 @@ -5896,8 +5978,8 @@ Download original - - Redo OCR + + Reprocess src/app/components/document-detail/document-detail.component.html 49 @@ -5906,7 +5988,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Redo OCR + Reprocess More like this @@ -5940,15 +6022,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 + 1169 src/app/guards/dirty-saved-view.guard.ts @@ -5960,7 +6050,7 @@ Previous src/app/components/document-detail/document-detail.component.html - 88 + 92 Previous @@ -5968,7 +6058,7 @@ Details src/app/components/document-detail/document-detail.component.html - 101 + 105 Details @@ -5976,7 +6066,7 @@ Title src/app/components/document-detail/document-detail.component.html - 104 + 108 src/app/components/document-list/document-list.component.html @@ -6000,7 +6090,7 @@ Archive serial number src/app/components/document-detail/document-detail.component.html - 105 + 109 Archive serial number @@ -6008,7 +6098,7 @@ Date created src/app/components/document-detail/document-detail.component.html - 106 + 110 Date created @@ -6016,7 +6106,7 @@ Correspondent src/app/components/document-detail/document-detail.component.html - 108 + 112 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -6044,7 +6134,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 @@ -6072,7 +6162,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 @@ -6096,7 +6186,7 @@ Content src/app/components/document-detail/document-detail.component.html - 197 + 201 Content @@ -6104,7 +6194,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 206 + 210 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6116,7 +6206,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 213 + 217 Date modified @@ -6124,7 +6214,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 217 + 221 Date added @@ -6132,7 +6222,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 221 + 225 Media filename @@ -6140,7 +6230,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 225 + 229 Original filename @@ -6148,7 +6238,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 229 + 233 Original MD5 checksum @@ -6156,7 +6246,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 233 + 237 Original file size @@ -6164,7 +6254,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 237 + 241 Original mime type @@ -6172,7 +6262,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 242 + 246 Archive MD5 checksum @@ -6180,7 +6270,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 248 + 252 Archive file size @@ -6188,7 +6278,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 257 + 261 Original document metadata @@ -6196,7 +6286,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 260 + 264 Archived document metadata @@ -6204,7 +6294,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 267 + 271 Preview @@ -6212,7 +6302,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 279,282 + 283,286 Notes @@ -6220,7 +6310,7 @@ History src/app/components/document-detail/document-detail.component.html - 290 + 294 History @@ -6228,7 +6318,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 327 + 331 Save & next @@ -6236,7 +6326,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 330 + 334 Save & close @@ -6244,7 +6334,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 381 + 385 Enter Password @@ -6252,7 +6342,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 330,332 + 342,344 An error occurred loading content: @@ -6260,7 +6350,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 353 + 365 Document changes detected @@ -6268,7 +6358,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. @@ -6276,7 +6366,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. @@ -6284,7 +6374,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 357 + 369 Ok @@ -6292,7 +6382,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 464 + 476 Next document @@ -6300,7 +6390,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 474 + 486 Previous document @@ -6308,7 +6398,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 482 + 494 src/app/services/open-documents.service.ts @@ -6320,7 +6410,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 489 + 501 Save document @@ -6328,7 +6418,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 531 + 543 Error retrieving metadata @@ -6336,7 +6426,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 556 + 568 Error retrieving suggestions. @@ -6344,11 +6434,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. @@ -6356,11 +6446,11 @@ 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 @@ -6368,7 +6458,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 764 + 776 src/app/components/manage/management-list/management-list.component.ts @@ -6384,7 +6474,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 765 + 777 Do you really want to delete document ""? @@ -6392,7 +6482,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 766 + 778 The files for this document will be deleted permanently. This operation cannot be undone. @@ -6400,7 +6490,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 768 + 780 Delete document @@ -6408,43 +6498,51 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 787 + 799 Error deleting document - - Redo OCR confirm + + Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 807 + 819 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 751 - Redo OCR confirm + Reprocess confirm - - This operation will permanently redo OCR for this document. + + This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 808 + 820 - This operation will permanently redo OCR for this document. + This operation will permanently recreate the archive file 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. + + The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 819 + 821 - 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. + 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 @@ -6452,7 +6550,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 899 + 911 Page Fit @@ -6460,7 +6558,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1102 + 1112 Split confirm @@ -6468,7 +6566,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. @@ -6476,7 +6574,7 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1118 + 1128 Split operation will begin in the background. @@ -6484,7 +6582,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1127 + 1137 Error executing split operation @@ -6492,7 +6590,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1139 + 1149 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6504,27 +6602,15 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1140 + 1150 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 + 1166 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -6532,10 +6618,42 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1169 + 1178 Error executing rotate operation + + Delete pages confirm + + src/app/components/document-detail/document-detail.component.ts + 1190 + + Delete pages confirm + + + This operation will permanently delete the selected pages from the original document. + + src/app/components/document-detail/document-detail.component.ts + 1191 + + 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 + 1206 + + 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 + 1215 + + Error executing delete pages operation + No entries found. @@ -6906,13 +7024,21 @@ Delete document(s) - - This operation will permanently redo OCR for selected 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 752 - This operation will permanently redo OCR for selected document(s). + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + The archive files will be re-generated with the current settings. This operation will permanently rotate the original version of document(s). @@ -6922,6 +7048,14 @@ 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 + 786 + + This will alter the original copy. + Merge confirm @@ -6946,18 +7080,6 @@ 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 @@ -6978,40 +7100,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 @@ -7024,7 +7114,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Created: Added: @@ -7678,7 +7768,7 @@ correspondent src/app/components/manage/correspondent-list/correspondent-list.component.ts - 39 + 40 correspondent @@ -7686,7 +7776,7 @@ correspondents src/app/components/manage/correspondent-list/correspondent-list.component.ts - 40 + 41 correspondents @@ -7694,7 +7784,7 @@ Last used src/app/components/manage/correspondent-list/correspondent-list.component.ts - 45 + 46 Last used @@ -7702,7 +7792,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 0e084e838..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 { 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..3f9143f44 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,6 +23,9 @@ 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 @@ -147,6 +151,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,19 +165,6 @@ 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 - def handle(self, *args, **options): self.target = Path(options["target"]).resolve() self.split_manifest: bool = options["split_manifest"] @@ -177,14 +175,17 @@ 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.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 +203,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 +224,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 +232,59 @@ 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]), ) # 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 +292,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 +334,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,7 +353,7 @@ 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 = (self.target / "version.json").resolve() version_path.write_text( json.dumps( {"version": version.__full_version_str__}, @@ -491,7 +383,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) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index dc0ac36fd..c6483011b 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -57,6 +57,7 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument("source") + parser.add_argument( "--no-progress-bar", default=False, @@ -64,11 +65,12 @@ 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", + ) def pre_check(self) -> None: """ @@ -82,17 +84,20 @@ class Command(BaseCommand): 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", - ), - ) - break + # 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 if ( User.objects.exclude(username__in=["consumer", "AnonymousUser"]).count() != 0 @@ -113,6 +118,8 @@ class Command(BaseCommand): 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.pre_check() @@ -149,16 +156,20 @@ class Command(BaseCommand): else: self.stdout.write(self.style.NOTICE("No version.json file located")) - self._check_manifest_valid() + if not self.data_only: + self._check_manifest_files_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) @@ -197,13 +208,16 @@ class Command(BaseCommand): ) raise e - 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 @@ -213,7 +227,7 @@ class Command(BaseCommand): "That directory doesn't appear to contain a manifest.json file.", ) - def _check_manifest_valid(self): + def _check_manifest_files_valid(self): """ Attempts to verify the manifest is valid. Namely checking the files referred to exist and the files can be read from @@ -230,15 +244,15 @@ class Command(BaseCommand): ) doc_file = record[EXPORTER_FILE_NAME] - doc_path = self.source / doc_file + 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}", @@ -246,21 +260,21 @@ class Command(BaseCommand): if EXPORTER_ARCHIVE_NAME in record: archive_file = record[EXPORTER_ARCHIVE_NAME] - doc_archive_path = self.source / archive_file + 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): + 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 +285,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] 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/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..426527183 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 @@ -937,11 +939,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 +991,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 +1001,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 +1131,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 +1178,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 diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index cdfedcb4c..68f366f44 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -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. @@ -532,6 +530,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 +740,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 +757,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..e3b2df990 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -117,10 +117,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 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 %}