diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index 1ad06f12e..0d2302b72 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -42,7 +42,15 @@ body:
id: logs
attributes:
label: Webserver logs
- description: If available, post any logs from the web server related to your issue.
+ description: Logs from the web server related to your issue.
+ render: bash
+ validations:
+ required: true
+ - type: textarea
+ id: logs_browser
+ attributes:
+ label: Browser logs
+ description: Logs from the web browser related to your issue, if needed
render: bash
- type: input
id: version
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f075fbd9f..5b65245fe 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -81,15 +81,6 @@ jobs:
matrix:
python-version: ['3.8', '3.9', '3.10']
fail-fast: false
- services:
- tika:
- image: ghcr.io/paperless-ngx/tika:latest
- ports:
- - "9998:9998/tcp"
- gotenberg:
- image: ghcr.io/p-h-a-i-l/gotenberg:7.6
- ports:
- - "3000:3000/tcp"
env:
# Enable Tika end to end testing
TIKA_LIVE: 1
@@ -107,6 +98,11 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
+ -
+ name: Start containers
+ run: |
+ docker compose --file ${GITHUB_WORKSPACE}/docker/compose/docker-compose.ci-test.yml pull --quiet
+ docker compose --file ${GITHUB_WORKSPACE}/docker/compose/docker-compose.ci-test.yml up --detach
-
name: Install pipenv
run: |
@@ -158,6 +154,12 @@ jobs:
run: |
cd src/
pipenv run coveralls --service=github
+ -
+ name: Stop containers
+ if: always()
+ run: |
+ docker compose --file ${GITHUB_WORKSPACE}/docker/compose/docker-compose.ci-test.yml logs
+ docker compose --file ${GITHUB_WORKSPACE}/docker/compose/docker-compose.ci-test.yml down
tests-frontend:
name: "Tests Frontend"
@@ -482,10 +484,9 @@ jobs:
-
name: Upload release archive
id: upload-release-asset
- uses: actions/upload-release-asset@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ uses: shogo82148/actions-upload-release-asset@v1
with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./paperless-ngx.tar.xz
asset_name: paperless-ngx-${{ steps.get_version.outputs.version }}.tar.xz
@@ -527,7 +528,7 @@ jobs:
CURRENT_CHANGELOG=`tail --lines +2 changelog.md`
echo -e "$CURRENT_CHANGELOG" >> changelog-new.md
mv changelog-new.md changelog.md
- pipenv run pre-commit --files changelog.md
+ pipenv run pre-commit run --files changelog.md
git config --global user.name "github-actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git commit -am "Changelog ${{ needs.publish-release.outputs.version }} - GHA"
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index f1bf47d14..c9f70ee81 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -51,8 +51,8 @@ repos:
hooks:
- id: add-trailing-comma
exclude: "(migrations)"
- - repo: https://gitlab.com/pycqa/flake8
- rev: 3.9.2
+ - repo: https://github.com/PyCQA/flake8
+ rev: 5.0.4
hooks:
- id: flake8
files: ^src/
@@ -63,7 +63,7 @@ repos:
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
- rev: v3.1.0
+ rev: v3.2.2
hooks:
- id: pyupgrade
exclude: "(migrations)"
diff --git a/Dockerfile b/Dockerfile
index 8b562e73e..b5b4d6e93 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -72,34 +72,37 @@ COPY --from=jbig2enc-builder /usr/src/jbig2enc/src/*.h /usr/local/include/
# Packages need for running
ARG RUNTIME_PACKAGES="\
+ # Python
+ python3 \
+ python3-pip \
+ python3-setuptools \
+ # General utils
curl \
- file \
+ # Docker specific
+ gosu \
+ # Timezones support
+ tzdata \
# fonts for text file thumbnail generation
fonts-liberation \
gettext \
ghostscript \
gnupg \
- gosu \
icc-profiles-free \
imagemagick \
- media-types \
+ # Image processing
liblept5 \
- libpq5 \
- libxml2 \
liblcms2-2 \
libtiff5 \
- libxslt1.1 \
libfreetype6 \
libwebp6 \
libopenjp2-7 \
libimagequant0 \
libraqm0 \
- libgnutls30 \
libjpeg62-turbo \
- python3 \
- python3-pip \
- python3-setuptools \
+ # PostgreSQL
+ libpq5 \
postgresql-client \
+ # MySQL / MariaDB
mariadb-client \
# For Numpy
libatlas3-base \
@@ -110,17 +113,23 @@ ARG RUNTIME_PACKAGES="\
tesseract-ocr-fra \
tesseract-ocr-ita \
tesseract-ocr-spa \
- # Suggested for OCRmyPDF
- pngquant \
- # Suggested for pikepdf
- jbig2dec \
- tzdata \
unpaper \
+ pngquant \
+ # pikepdf / qpdf
+ jbig2dec \
+ libxml2 \
+ libxslt1.1 \
+ libgnutls30 \
# Mime type detection
+ file \
+ libmagic1 \
+ media-types \
zlib1g \
# Barcode splitter
libzbar0 \
- poppler-utils"
+ poppler-utils \
+ # RapidFuzz on armv7
+ libatomic1"
# Install basic runtime packages.
# These change very infrequently
diff --git a/README.md b/README.md
index 8b1eb5e4a..9ae1443f4 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[](https://crowdin.com/project/paperless-ngx)
[](https://paperless-ngx.readthedocs.io/en/latest/?badge=latest)
[](https://coveralls.io/github/paperless-ngx/paperless-ngx?branch=master)
-[](https://matrix.to/#/#paperless:adnidor.de)
+[](https://matrix.to/#/%23paperlessngx%3Amatrix.org)
@@ -105,6 +105,7 @@ Paperless has been around a while now, and people are starting to build stuff on
- [Paperless App](https://github.com/bauerj/paperless_app): An Android/iOS app for Paperless-ngx. Also works with the original Paperless and Paperless-ng.
- [Paperless Share](https://github.com/qcasey/paperless_share). Share any files from your Android application with paperless. Very simple, but works with all of the mobile scanning apps out there that allow you to share scanned documents.
- [Scan to Paperless](https://github.com/sbrunner/scan-to-paperless): Scan and prepare (crop, deskew, OCR, ...) your documents for Paperless.
+- [Paperless Mobile](https://github.com/astubenbord/paperless-mobile): A modern, feature rich mobile application for Paperless.
These projects also exist, but their status and compatibility with paperless-ngx is unknown.
diff --git a/docker/compose/docker-compose.ci-test.yml b/docker/compose/docker-compose.ci-test.yml
new file mode 100644
index 000000000..87bc8b7f2
--- /dev/null
+++ b/docker/compose/docker-compose.ci-test.yml
@@ -0,0 +1,22 @@
+# docker-compose file for running paperless testing with actual gotenberg
+# and Tika containers for a more end to end test of the Tika related functionality
+# Can be used locally or by the CI to start the nessecary containers with the
+# correct networking for the tests
+
+version: "3.7"
+services:
+ gotenberg:
+ image: docker.io/gotenberg/gotenberg:7.6
+ hostname: gotenberg
+ container_name: gotenberg
+ network_mode: host
+ restart: unless-stopped
+ command:
+ - "gotenberg"
+ - "--chromium-disable-routes=true"
+ tika:
+ image: ghcr.io/paperless-ngx/tika:latest
+ hostname: tika
+ container_name: tika
+ network_mode: host
+ restart: unless-stopped
diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml
index b3699e4d7..22f69ba4f 100644
--- a/docker/compose/docker-compose.mariadb-tika.yml
+++ b/docker/compose/docker-compose.mariadb-tika.yml
@@ -77,8 +77,8 @@ services:
PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBENGINE: mariadb
PAPERLESS_DBHOST: db
- PAPERLESS_DBUSER: paperless
- PAPERLESS_DBPASSWORD: paperless
+ PAPERLESS_DBUSER: paperless # only needed if non-default username
+ PAPERLESS_DBPASS: paperless # only needed if non-default password
PAPERLESS_DBPORT: 3306
PAPERLESS_TIKA_ENABLED: 1
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
diff --git a/docker/compose/docker-compose.mariadb.yml b/docker/compose/docker-compose.mariadb.yml
index 8cb452464..a18e0fb3e 100644
--- a/docker/compose/docker-compose.mariadb.yml
+++ b/docker/compose/docker-compose.mariadb.yml
@@ -71,8 +71,8 @@ services:
PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBENGINE: mariadb
PAPERLESS_DBHOST: db
- PAPERLESS_DBUSER: paperless
- PAPERLESS_DBPASSWORD: paperless
+ PAPERLESS_DBUSER: paperless # only needed if non-default username
+ PAPERLESS_DBPASS: paperless # only needed if non-default password
PAPERLESS_DBPORT: 3306
diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh
index d1107feca..f227e18d8 100755
--- a/docker/docker-entrypoint.sh
+++ b/docker/docker-entrypoint.sh
@@ -137,8 +137,7 @@ initialize() {
install_languages() {
echo "Installing languages..."
- local -r langs="$1"
- read -ra langs <<<"$langs"
+ read -ra langs <<<"$1"
# Check that it is not empty
if [ ${#langs[@]} -eq 0 ]; then
diff --git a/docs/administration.rst b/docs/administration.rst
index ed2075a48..2984057ed 100644
--- a/docs/administration.rst
+++ b/docs/administration.rst
@@ -447,6 +447,14 @@ command:
The command takes no arguments and processes all your mail accounts and rules.
+ .. note::
+
+ As of October 2022 Microsoft no longer supports IMAP authentication for Exchange
+ servers, thus Exchange is no longer supported until a solution is implemented in
+ the Python IMAP library used by Paperless. See `learn.microsoft.com`_
+
+.. _learn.microsoft.com: https://learn.microsoft.com/en-us/exchange/clients-and-mobile-in-exchange-online/deprecation-of-basic-authentication-exchange-online
+
.. _utilities-archiver:
Creating archived documents
diff --git a/docs/advanced_usage.rst b/docs/advanced_usage.rst
index eda2ca259..1fe3e3685 100644
--- a/docs/advanced_usage.rst
+++ b/docs/advanced_usage.rst
@@ -149,6 +149,9 @@ which will in turn call `pdf2pdfocr.py`_ on your document, which will then
overwrite the file with an OCR'd version of the file and exit. At which point,
the consumption process will begin with the newly modified file.
+The script's stdout and stderr will be logged line by line to the webserver log, along
+with the exit code of the script.
+
.. _pdf2pdfocr.py: https://github.com/LeoFCardoso/pdf2pdfocr
.. _advanced-post_consume_script:
@@ -178,6 +181,10 @@ example, you can take a look at `post-consumption-example.sh`_ in this project.
The post consumption script cannot cancel the consumption process.
+The script's stdout and stderr will be logged line by line to the webserver log, along
+with the exit code of the script.
+
+
Docker
------
Assumed you have ``/home/foo/paperless-ngx/scripts/post-consumption-example.sh``.
@@ -417,3 +424,24 @@ For example, using Docker Compose:
# ...
volumes:
- /path/to/my/scripts:/custom-cont-init.d:ro
+
+.. _advanced-mysql-caveats:
+
+MySQL Caveats
+#############
+
+Case Sensitivity
+================
+
+The database interface does not provide a method to configure a MySQL database to
+be case sensitive. This would prevent a user from creating a tag ``Name`` and ``NAME``
+as they are considered the same.
+
+Per Django documentation, to enable this requires manual intervention. To enable
+case sensetive tables, you can execute the following command against each table:
+
+``ALTER TABLE CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;``
+
+You can also set the default for new tables (this does NOT affect existing tables) with:
+
+``ALTER DATABASE CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;``
diff --git a/docs/changelog.md b/docs/changelog.md
index 1caa00220..2a037aebe 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,7 +1,189 @@
# Changelog
+## paperless-ngx 1.10.0
+
+### Features
+
+- Feature: Capture stdout \& stderr of the pre/post consume scripts [@stumpylog](https://github.com/stumpylog) ([#1967](https://github.com/paperless-ngx/paperless-ngx/pull/1967))
+- Feature: Allow running custom container initialization scripts [@stumpylog](https://github.com/stumpylog) ([#1838](https://github.com/paperless-ngx/paperless-ngx/pull/1838))
+- Feature: Add more file name formatting options [@stumpylog](https://github.com/stumpylog) ([#1906](https://github.com/paperless-ngx/paperless-ngx/pull/1906))
+- Feature: 1.9.2 UI tweaks [@shamoon](https://github.com/shamoon) ([#1886](https://github.com/paperless-ngx/paperless-ngx/pull/1886))
+- Feature: Optional celery monitoring with Flower [@stumpylog](https://github.com/stumpylog) ([#1810](https://github.com/paperless-ngx/paperless-ngx/pull/1810))
+- Feature: Save pending tasks for frontend [@stumpylog](https://github.com/stumpylog) ([#1816](https://github.com/paperless-ngx/paperless-ngx/pull/1816))
+- Feature: Improved processing for automatic matching [@stumpylog](https://github.com/stumpylog) ([#1609](https://github.com/paperless-ngx/paperless-ngx/pull/1609))
+- Feature: Transition to celery for background tasks [@stumpylog](https://github.com/stumpylog) ([#1648](https://github.com/paperless-ngx/paperless-ngx/pull/1648))
+- Feature: UI Welcome Tour [@shamoon](https://github.com/shamoon) ([#1644](https://github.com/paperless-ngx/paperless-ngx/pull/1644))
+- Feature: slim sidebar [@shamoon](https://github.com/shamoon) ([#1641](https://github.com/paperless-ngx/paperless-ngx/pull/1641))
+- change default matching algo to auto and move to constant [@NiFNi](https://github.com/NiFNi) ([#1754](https://github.com/paperless-ngx/paperless-ngx/pull/1754))
+- Feature: Enable end to end Tika testing in CI [@stumpylog](https://github.com/stumpylog) ([#1757](https://github.com/paperless-ngx/paperless-ngx/pull/1757))
+- Feature: frontend update checking settings [@shamoon](https://github.com/shamoon) ([#1692](https://github.com/paperless-ngx/paperless-ngx/pull/1692))
+- Feature: Upgrade to qpdf 11, pikepdf 6 \& ocrmypdf 14 [@stumpylog](https://github.com/stumpylog) ([#1642](https://github.com/paperless-ngx/paperless-ngx/pull/1642))
+
+### Bug Fixes
+
+- Bugfix: Fix created_date being a string [@stumpylog](https://github.com/stumpylog) ([#2023](https://github.com/paperless-ngx/paperless-ngx/pull/2023))
+- Bugfix: Fixes an issue with mixed text and images when redoing OCR [@stumpylog](https://github.com/stumpylog) ([#2017](https://github.com/paperless-ngx/paperless-ngx/pull/2017))
+- Bugfix: Always re-try barcodes with pdf2image [@stumpylog](https://github.com/stumpylog) ([#1953](https://github.com/paperless-ngx/paperless-ngx/pull/1953))
+- Fix: using `CONSUMER_SUBDIRS_AS_TAGS` causes failure with Celery in `dev` [@shamoon](https://github.com/shamoon) ([#1942](https://github.com/paperless-ngx/paperless-ngx/pull/1942))
+- Fix mail consumption broken in `dev` after move to celery [@shamoon](https://github.com/shamoon) ([#1934](https://github.com/paperless-ngx/paperless-ngx/pull/1934))
+- Bugfix: Prevent file handling from running with stale data [@stumpylog](https://github.com/stumpylog) ([#1905](https://github.com/paperless-ngx/paperless-ngx/pull/1905))
+- Chore: Reduce nuisance CI test failures [@stumpylog](https://github.com/stumpylog) ([#1922](https://github.com/paperless-ngx/paperless-ngx/pull/1922))
+- Bugfix: Unintentional deletion of feature tagged Docker images [@stumpylog](https://github.com/stumpylog) ([#1896](https://github.com/paperless-ngx/paperless-ngx/pull/1896))
+- Fix: independent control of saved views [@shamoon](https://github.com/shamoon) ([#1868](https://github.com/paperless-ngx/paperless-ngx/pull/1868))
+- Fix: frontend relative date searches [@shamoon](https://github.com/shamoon) ([#1865](https://github.com/paperless-ngx/paperless-ngx/pull/1865))
+- Chore: Fixes pipenv issues [@stumpylog](https://github.com/stumpylog) ([#1873](https://github.com/paperless-ngx/paperless-ngx/pull/1873))
+- Bugfix: Handle password protected PDFs during barcode detection [@stumpylog](https://github.com/stumpylog) ([#1858](https://github.com/paperless-ngx/paperless-ngx/pull/1858))
+- Fix: Allows configuring barcodes with pdf2image instead of pikepdf [@stumpylog](https://github.com/stumpylog) ([#1857](https://github.com/paperless-ngx/paperless-ngx/pull/1857))
+- Bugfix: Reverts the change around skip_noarchive [@stumpylog](https://github.com/stumpylog) ([#1829](https://github.com/paperless-ngx/paperless-ngx/pull/1829))
+- Fix: missing loadViewConfig breaks loading saved view [@shamoon](https://github.com/shamoon) ([#1792](https://github.com/paperless-ngx/paperless-ngx/pull/1792))
+- Bugfix: Fallback to pdf2image if pikepdf fails [@stumpylog](https://github.com/stumpylog) ([#1745](https://github.com/paperless-ngx/paperless-ngx/pull/1745))
+- Fix: creating new storage path on document edit fails to update menu [@shamoon](https://github.com/shamoon) ([#1777](https://github.com/paperless-ngx/paperless-ngx/pull/1777))
+- Bugfix: Files containing barcodes uploaded via web are not consumed after splitting [@stumpylog](https://github.com/stumpylog) ([#1762](https://github.com/paperless-ngx/paperless-ngx/pull/1762))
+- Bugfix: Fix email labeling for non-Gmail servers [@stumpylog](https://github.com/stumpylog) ([#1755](https://github.com/paperless-ngx/paperless-ngx/pull/1755))
+- Fix: allow preview for .csv files [@shamoon](https://github.com/shamoon) ([#1744](https://github.com/paperless-ngx/paperless-ngx/pull/1744))
+- Bugfix: csv recognition by consumer [@bin101](https://github.com/bin101) ([#1726](https://github.com/paperless-ngx/paperless-ngx/pull/1726))
+- Bugfix: Include document title when a duplicate is detected [@stumpylog](https://github.com/stumpylog) ([#1696](https://github.com/paperless-ngx/paperless-ngx/pull/1696))
+- Bugfix: Set MySql charset [@stumpylog](https://github.com/stumpylog) ([#1687](https://github.com/paperless-ngx/paperless-ngx/pull/1687))
+- Mariadb compose files should use `PAPERLESS_DBPASS` [@shamoon](https://github.com/shamoon) ([#1683](https://github.com/paperless-ngx/paperless-ngx/pull/1683))
+
+### Documentation
+
+- Documentation: Update MariaDB docs to note some potential issues [@stumpylog](https://github.com/stumpylog) ([#2016](https://github.com/paperless-ngx/paperless-ngx/pull/2016))
+- Documentation: Add note re MS exchange servers [@shamoon](https://github.com/shamoon) ([#1780](https://github.com/paperless-ngx/paperless-ngx/pull/1780))
+- Chore: Updates Gotenberg versions [@stumpylog](https://github.com/stumpylog) ([#1768](https://github.com/paperless-ngx/paperless-ngx/pull/1768))
+- Documentation: Tweak LinuxServer [@stumpylog](https://github.com/stumpylog) ([#1761](https://github.com/paperless-ngx/paperless-ngx/pull/1761))
+- Documentation: Adds troubleshooting note about Kubernetes and ports [@stumpylog](https://github.com/stumpylog) ([#1731](https://github.com/paperless-ngx/paperless-ngx/pull/1731))
+- Documentation: LinuxServer.io Migration [@stumpylog](https://github.com/stumpylog) ([#1733](https://github.com/paperless-ngx/paperless-ngx/pull/1733))
+- [Documentation] Add v1.9.2 changelog [@github-actions](https://github.com/github-actions) ([#1671](https://github.com/paperless-ngx/paperless-ngx/pull/1671))
+
+### Maintenance
+
+- Bump tj-actions/changed-files from 32 to 34 [@dependabot](https://github.com/dependabot) ([#1915](https://github.com/paperless-ngx/paperless-ngx/pull/1915))
+- Chore: Fix `dev` trying to build Pillow or lxml [@stumpylog](https://github.com/stumpylog) ([#1909](https://github.com/paperless-ngx/paperless-ngx/pull/1909))
+- Chore: Fixes pipenv issues [@stumpylog](https://github.com/stumpylog) ([#1873](https://github.com/paperless-ngx/paperless-ngx/pull/1873))
+- Chore: Simplified registry cleanup [@stumpylog](https://github.com/stumpylog) ([#1812](https://github.com/paperless-ngx/paperless-ngx/pull/1812))
+- Chore: Fixing deprecated workflow commands [@stumpylog](https://github.com/stumpylog) ([#1786](https://github.com/paperless-ngx/paperless-ngx/pull/1786))
+- Chore: Python library update + test fixes [@stumpylog](https://github.com/stumpylog) ([#1773](https://github.com/paperless-ngx/paperless-ngx/pull/1773))
+- Chore: Updates Gotenberg versions [@stumpylog](https://github.com/stumpylog) ([#1768](https://github.com/paperless-ngx/paperless-ngx/pull/1768))
+- Bump leonsteinhaeuser/project-beta-automations from 1.3.0 to 2.0.1 [@dependabot](https://github.com/dependabot) ([#1703](https://github.com/paperless-ngx/paperless-ngx/pull/1703))
+- Bump tj-actions/changed-files from 29.0.2 to 31.0.2 [@dependabot](https://github.com/dependabot) ([#1702](https://github.com/paperless-ngx/paperless-ngx/pull/1702))
+- Bump actions/checkout from 2 to 3 [@dependabot](https://github.com/dependabot) ([#1704](https://github.com/paperless-ngx/paperless-ngx/pull/1704))
+- Bump actions/setup-python from 3 to 4 [@dependabot](https://github.com/dependabot) ([#1705](https://github.com/paperless-ngx/paperless-ngx/pull/1705))
+
+### Dependencies
+
+
+31 changes
+
+- Bugfix: Downgrade cryptography for armv7 compatibility [@stumpylog](https://github.com/stumpylog) ([#1954](https://github.com/paperless-ngx/paperless-ngx/pull/1954))
+- Chore: Bulk library updates + loosen restrictions [@stumpylog](https://github.com/stumpylog) ([#1949](https://github.com/paperless-ngx/paperless-ngx/pull/1949))
+- Bump tj-actions/changed-files from 32 to 34 [@dependabot](https://github.com/dependabot) ([#1915](https://github.com/paperless-ngx/paperless-ngx/pull/1915))
+- Bump scikit-learn from 1.1.2 to 1.1.3 [@dependabot](https://github.com/dependabot) ([#1903](https://github.com/paperless-ngx/paperless-ngx/pull/1903))
+- Bump angular packages as bundle [@dependabot](https://github.com/dependabot) ([#1910](https://github.com/paperless-ngx/paperless-ngx/pull/1910))
+- Bump ngx-ui-tour-ng-bootstrap from 11.0.0 to 11.1.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1911](https://github.com/paperless-ngx/paperless-ngx/pull/1911))
+- Bump jest-environment-jsdom from 29.1.2 to 29.2.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1914](https://github.com/paperless-ngx/paperless-ngx/pull/1914))
+- Bump pillow from 9.2.0 to 9.3.0 [@dependabot](https://github.com/dependabot) ([#1904](https://github.com/paperless-ngx/paperless-ngx/pull/1904))
+- Bump pytest from 7.1.3 to 7.2.0 [@dependabot](https://github.com/dependabot) ([#1902](https://github.com/paperless-ngx/paperless-ngx/pull/1902))
+- Bump tox from 3.26.0 to 3.27.0 [@dependabot](https://github.com/dependabot) ([#1901](https://github.com/paperless-ngx/paperless-ngx/pull/1901))
+- Bump zipp from 3.9.0 to 3.10.0 [@dependabot](https://github.com/dependabot) ([#1860](https://github.com/paperless-ngx/paperless-ngx/pull/1860))
+- Bump pytest-env from 0.6.2 to 0.8.1 [@dependabot](https://github.com/dependabot) ([#1859](https://github.com/paperless-ngx/paperless-ngx/pull/1859))
+- Bump sphinx from 5.2.3 to 5.3.0 [@dependabot](https://github.com/dependabot) ([#1817](https://github.com/paperless-ngx/paperless-ngx/pull/1817))
+- Chore: downgrade channels-redis [@stumpylog](https://github.com/stumpylog) ([#1802](https://github.com/paperless-ngx/paperless-ngx/pull/1802))
+- Chore: Update to qpdf 11.1.1 and update backend libraries [@stumpylog](https://github.com/stumpylog) ([#1749](https://github.com/paperless-ngx/paperless-ngx/pull/1749))
+- Bump myst-parser from 0.18.0 to 0.18.1 [@dependabot](https://github.com/dependabot) ([#1738](https://github.com/paperless-ngx/paperless-ngx/pull/1738))
+- Bump leonsteinhaeuser/project-beta-automations from 1.3.0 to 2.0.1 [@dependabot](https://github.com/dependabot) ([#1703](https://github.com/paperless-ngx/paperless-ngx/pull/1703))
+- Bump tj-actions/changed-files from 29.0.2 to 31.0.2 [@dependabot](https://github.com/dependabot) ([#1702](https://github.com/paperless-ngx/paperless-ngx/pull/1702))
+- Bump actions/checkout from 2 to 3 [@dependabot](https://github.com/dependabot) ([#1704](https://github.com/paperless-ngx/paperless-ngx/pull/1704))
+- Bump actions/setup-python from 3 to 4 [@dependabot](https://github.com/dependabot) ([#1705](https://github.com/paperless-ngx/paperless-ngx/pull/1705))
+- Bump rxjs from 7.5.6 to 7.5.7 in /src-ui [@dependabot](https://github.com/dependabot) ([#1720](https://github.com/paperless-ngx/paperless-ngx/pull/1720))
+- Bump uuid from 8.3.2 to 9.0.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1716](https://github.com/paperless-ngx/paperless-ngx/pull/1716))
+- Bump ng2-pdf-viewer from 9.1.0 to 9.1.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1717](https://github.com/paperless-ngx/paperless-ngx/pull/1717))
+- Bump ngx-color from 8.0.2 to 8.0.3 in /src-ui [@dependabot](https://github.com/dependabot) ([#1715](https://github.com/paperless-ngx/paperless-ngx/pull/1715))
+- Bump concurrently from 7.3.0 to 7.4.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1719](https://github.com/paperless-ngx/paperless-ngx/pull/1719))
+- Bump [@types/node from 18.7.14 to 18.7.23 in /src-ui @dependabot](https://github.com/types/node from 18.7.14 to 18.7.23 in /src-ui @dependabot) ([#1718](https://github.com/paperless-ngx/paperless-ngx/pull/1718))
+- Bump jest-environment-jsdom from 29.0.1 to 29.1.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1714](https://github.com/paperless-ngx/paperless-ngx/pull/1714))
+- Bump [@angular/cli @angular/core @dependabot](https://github.com/angular/cli @angular/core @dependabot) ([#1708](https://github.com/paperless-ngx/paperless-ngx/pull/1708))
+- Bump cypress from 10.7.0 to 10.9.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1707](https://github.com/paperless-ngx/paperless-ngx/pull/1707))
+- Bump bootstrap from 5.2.0 to 5.2.1 in /src-ui [@dependabot](https://github.com/dependabot) ([#1710](https://github.com/paperless-ngx/paperless-ngx/pull/1710))
+- Bump typescript from 4.7.4 to 4.8.4 in /src-ui [@dependabot](https://github.com/dependabot) ([#1706](https://github.com/paperless-ngx/paperless-ngx/pull/1706))
+
+
+### All App Changes
+
+- Add info that re-do OCR doesnt automatically refresh content [@shamoon](https://github.com/shamoon) ([#2025](https://github.com/paperless-ngx/paperless-ngx/pull/2025))
+- Bugfix: Fix created_date being a string [@stumpylog](https://github.com/stumpylog) ([#2023](https://github.com/paperless-ngx/paperless-ngx/pull/2023))
+- Bugfix: Fixes an issue with mixed text and images when redoing OCR [@stumpylog](https://github.com/stumpylog) ([#2017](https://github.com/paperless-ngx/paperless-ngx/pull/2017))
+- Bugfix: Don't allow exceptions during date parsing to fail consume [@stumpylog](https://github.com/stumpylog) ([#1998](https://github.com/paperless-ngx/paperless-ngx/pull/1998))
+- Feature: Capture stdout \& stderr of the pre/post consume scripts [@stumpylog](https://github.com/stumpylog) ([#1967](https://github.com/paperless-ngx/paperless-ngx/pull/1967))
+- Bugfix: Always re-try barcodes with pdf2image [@stumpylog](https://github.com/stumpylog) ([#1953](https://github.com/paperless-ngx/paperless-ngx/pull/1953))
+- Fix: using `CONSUMER_SUBDIRS_AS_TAGS` causes failure with Celery in `dev` [@shamoon](https://github.com/shamoon) ([#1942](https://github.com/paperless-ngx/paperless-ngx/pull/1942))
+- Fix mail consumption broken in `dev` after move to celery [@shamoon](https://github.com/shamoon) ([#1934](https://github.com/paperless-ngx/paperless-ngx/pull/1934))
+- Bugfix: Prevent file handling from running with stale data [@stumpylog](https://github.com/stumpylog) ([#1905](https://github.com/paperless-ngx/paperless-ngx/pull/1905))
+- Chore: Reduce nuisance CI test failures [@stumpylog](https://github.com/stumpylog) ([#1922](https://github.com/paperless-ngx/paperless-ngx/pull/1922))
+- Bump scikit-learn from 1.1.2 to 1.1.3 [@dependabot](https://github.com/dependabot) ([#1903](https://github.com/paperless-ngx/paperless-ngx/pull/1903))
+- Bump angular packages as bundle [@dependabot](https://github.com/dependabot) ([#1910](https://github.com/paperless-ngx/paperless-ngx/pull/1910))
+- Bump ngx-ui-tour-ng-bootstrap from 11.0.0 to 11.1.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1911](https://github.com/paperless-ngx/paperless-ngx/pull/1911))
+- Bump jest-environment-jsdom from 29.1.2 to 29.2.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1914](https://github.com/paperless-ngx/paperless-ngx/pull/1914))
+- Feature: Add more file name formatting options [@stumpylog](https://github.com/stumpylog) ([#1906](https://github.com/paperless-ngx/paperless-ngx/pull/1906))
+- Bump pillow from 9.2.0 to 9.3.0 [@dependabot](https://github.com/dependabot) ([#1904](https://github.com/paperless-ngx/paperless-ngx/pull/1904))
+- Bump pytest from 7.1.3 to 7.2.0 [@dependabot](https://github.com/dependabot) ([#1902](https://github.com/paperless-ngx/paperless-ngx/pull/1902))
+- Bump tox from 3.26.0 to 3.27.0 [@dependabot](https://github.com/dependabot) ([#1901](https://github.com/paperless-ngx/paperless-ngx/pull/1901))
+- directly use rapidfuzz [@maxbachmann](https://github.com/maxbachmann) ([#1899](https://github.com/paperless-ngx/paperless-ngx/pull/1899))
+- Feature: 1.9.2 UI tweaks [@shamoon](https://github.com/shamoon) ([#1886](https://github.com/paperless-ngx/paperless-ngx/pull/1886))
+- Bump zipp from 3.9.0 to 3.10.0 [@dependabot](https://github.com/dependabot) ([#1860](https://github.com/paperless-ngx/paperless-ngx/pull/1860))
+- Fix: independent control of saved views [@shamoon](https://github.com/shamoon) ([#1868](https://github.com/paperless-ngx/paperless-ngx/pull/1868))
+- Fix: frontend relative date searches [@shamoon](https://github.com/shamoon) ([#1865](https://github.com/paperless-ngx/paperless-ngx/pull/1865))
+- Django error W003 - MariaDB may not allow unique CharFields to have a max_length > 255. [@Sblop](https://github.com/Sblop) ([#1881](https://github.com/paperless-ngx/paperless-ngx/pull/1881))
+- Bump pytest-env from 0.6.2 to 0.8.1 [@dependabot](https://github.com/dependabot) ([#1859](https://github.com/paperless-ngx/paperless-ngx/pull/1859))
+- Fix: Allows configuring barcodes with pdf2image instead of pikepdf [@stumpylog](https://github.com/stumpylog) ([#1857](https://github.com/paperless-ngx/paperless-ngx/pull/1857))
+- Feature: Save pending tasks for frontend [@stumpylog](https://github.com/stumpylog) ([#1816](https://github.com/paperless-ngx/paperless-ngx/pull/1816))
+- Bugfix: Reverts the change around skip_noarchive [@stumpylog](https://github.com/stumpylog) ([#1829](https://github.com/paperless-ngx/paperless-ngx/pull/1829))
+- Bump sphinx from 5.2.3 to 5.3.0 [@dependabot](https://github.com/dependabot) ([#1817](https://github.com/paperless-ngx/paperless-ngx/pull/1817))
+- Fix: missing loadViewConfig breaks loading saved view [@shamoon](https://github.com/shamoon) ([#1792](https://github.com/paperless-ngx/paperless-ngx/pull/1792))
+- Bugfix: Fallback to pdf2image if pikepdf fails [@stumpylog](https://github.com/stumpylog) ([#1745](https://github.com/paperless-ngx/paperless-ngx/pull/1745))
+- Fix: creating new storage path on document edit fails to update menu [@shamoon](https://github.com/shamoon) ([#1777](https://github.com/paperless-ngx/paperless-ngx/pull/1777))
+- Chore: Python library update + test fixes [@stumpylog](https://github.com/stumpylog) ([#1773](https://github.com/paperless-ngx/paperless-ngx/pull/1773))
+- Feature: Improved processing for automatic matching [@stumpylog](https://github.com/stumpylog) ([#1609](https://github.com/paperless-ngx/paperless-ngx/pull/1609))
+- Feature: Transition to celery for background tasks [@stumpylog](https://github.com/stumpylog) ([#1648](https://github.com/paperless-ngx/paperless-ngx/pull/1648))
+- Feature: UI Welcome Tour [@shamoon](https://github.com/shamoon) ([#1644](https://github.com/paperless-ngx/paperless-ngx/pull/1644))
+- Feature: slim sidebar [@shamoon](https://github.com/shamoon) ([#1641](https://github.com/paperless-ngx/paperless-ngx/pull/1641))
+- Bugfix: Files containing barcodes uploaded via web are not consumed after splitting [@stumpylog](https://github.com/stumpylog) ([#1762](https://github.com/paperless-ngx/paperless-ngx/pull/1762))
+- change default matching algo to auto and move to constant [@NiFNi](https://github.com/NiFNi) ([#1754](https://github.com/paperless-ngx/paperless-ngx/pull/1754))
+- Bugfix: Fix email labeling for non-Gmail servers [@stumpylog](https://github.com/stumpylog) ([#1755](https://github.com/paperless-ngx/paperless-ngx/pull/1755))
+- Feature: frontend update checking settings [@shamoon](https://github.com/shamoon) ([#1692](https://github.com/paperless-ngx/paperless-ngx/pull/1692))
+- Fix: allow preview for .csv files [@shamoon](https://github.com/shamoon) ([#1744](https://github.com/paperless-ngx/paperless-ngx/pull/1744))
+- Bump myst-parser from 0.18.0 to 0.18.1 [@dependabot](https://github.com/dependabot) ([#1738](https://github.com/paperless-ngx/paperless-ngx/pull/1738))
+- Bugfix: csv recognition by consumer [@bin101](https://github.com/bin101) ([#1726](https://github.com/paperless-ngx/paperless-ngx/pull/1726))
+- Bugfix: Include document title when a duplicate is detected [@stumpylog](https://github.com/stumpylog) ([#1696](https://github.com/paperless-ngx/paperless-ngx/pull/1696))
+- Bump rxjs from 7.5.6 to 7.5.7 in /src-ui [@dependabot](https://github.com/dependabot) ([#1720](https://github.com/paperless-ngx/paperless-ngx/pull/1720))
+- Bump uuid from 8.3.2 to 9.0.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1716](https://github.com/paperless-ngx/paperless-ngx/pull/1716))
+- Bump ng2-pdf-viewer from 9.1.0 to 9.1.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1717](https://github.com/paperless-ngx/paperless-ngx/pull/1717))
+- Bump ngx-color from 8.0.2 to 8.0.3 in /src-ui [@dependabot](https://github.com/dependabot) ([#1715](https://github.com/paperless-ngx/paperless-ngx/pull/1715))
+- Bump concurrently from 7.3.0 to 7.4.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1719](https://github.com/paperless-ngx/paperless-ngx/pull/1719))
+- Bump [@types/node from 18.7.14 to 18.7.23 in /src-ui @dependabot](https://github.com/types/node from 18.7.14 to 18.7.23 in /src-ui @dependabot) ([#1718](https://github.com/paperless-ngx/paperless-ngx/pull/1718))
+- Bump jest-environment-jsdom from 29.0.1 to 29.1.2 in /src-ui [@dependabot](https://github.com/dependabot) ([#1714](https://github.com/paperless-ngx/paperless-ngx/pull/1714))
+- Bump [@angular/cli @angular/core @dependabot](https://github.com/angular/cli @angular/core @dependabot) ([#1708](https://github.com/paperless-ngx/paperless-ngx/pull/1708))
+- Bump cypress from 10.7.0 to 10.9.0 in /src-ui [@dependabot](https://github.com/dependabot) ([#1707](https://github.com/paperless-ngx/paperless-ngx/pull/1707))
+- Bump bootstrap from 5.2.0 to 5.2.1 in /src-ui [@dependabot](https://github.com/dependabot) ([#1710](https://github.com/paperless-ngx/paperless-ngx/pull/1710))
+- Bump typescript from 4.7.4 to 4.8.4 in /src-ui [@dependabot](https://github.com/dependabot) ([#1706](https://github.com/paperless-ngx/paperless-ngx/pull/1706))
+- Bugfix: Set MySql charset [@stumpylog](https://github.com/stumpylog) ([#1687](https://github.com/paperless-ngx/paperless-ngx/pull/1687))
+
+## paperless-ngx 1.9.2
+
+### Bug Fixes
+
+- Bugfix: Allow PAPERLESS_OCR_CLEAN=none [@shamoon](https://github.com/shamoon) ([#1670](https://github.com/paperless-ngx/paperless-ngx/pull/1670))
+
+### All App Changes
+
+- Chore: Bumps version numbers to 1.9.2 [@stumpylog](https://github.com/stumpylog) ([#1666](https://github.com/paperless-ngx/paperless-ngx/pull/1666))
+
## paperless-ngx 1.9.1
+### Notes
+
+- Version 1.9.1 incorrectly displays the version string as 1.9.0
+
### Bug Fixes
- Bugfix: Fixes missing OCR mode skip_noarchive [@stumpylog](https://github.com/stumpylog) ([#1645](https://github.com/paperless-ngx/paperless-ngx/pull/1645))
diff --git a/docs/configuration.rst b/docs/configuration.rst
index 2523b0f5d..f9e2c8be4 100644
--- a/docs/configuration.rst
+++ b/docs/configuration.rst
@@ -38,8 +38,14 @@ PAPERLESS_REDIS=
PAPERLESS_DBENGINE=
Optional, gives the ability to choose Postgres or MariaDB for database engine.
Available options are `postgresql` and `mariadb`.
+
Default is `postgresql`.
+ .. warning::
+
+ Using MariaDB comes with some caveats. See :ref:`advanced-mysql-caveats` for details.
+
+
PAPERLESS_DBHOST=
By default, sqlite is used as the database backend. This can be changed here.
diff --git a/docs/setup.rst b/docs/setup.rst
index 15f16d193..db96c6b58 100644
--- a/docs/setup.rst
+++ b/docs/setup.rst
@@ -648,13 +648,56 @@ Migration to paperless-ngx is then performed in a few simple steps:
10. Optionally, follow the instructions below to migrate your existing data to PostgreSQL.
+Migrating from LinuxServer.io Docker Image
+==========================================
+
+As with any upgrades and large changes, it is highly recommended to create a backup before
+starting. This assumes the image was running using Docker Compose, but the instructions
+are translatable to Docker 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`` and continue
+ to step 4.
+ b) Otherwise, in the ``docker-compose.yml`` add a new service for Redis,
+ following `the example compose files `_
+ c) Set the environment variable ``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``
+
+5. Update configuration paths
+
+ a) Set the environment variable ``PAPERLESS_DATA_DIR``
+ to ``/config``
+
+6. Update media paths
+
+ a) Set the environment variable ``PAPERLESS_MEDIA_ROOT``
+ to ``/data/media``
+
+7. Update timezone
+
+ a) Set the environment variable ``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.
+
+9. Start the containers as before, using ``docker-compose``.
+
.. _setup-sqlite_to_psql:
-Moving data from SQLite to PostgreSQL
-=====================================
+Moving data from SQLite to PostgreSQL or MySQL/MariaDB
+======================================================
-Moving your data from SQLite to PostgreSQL is done via executing a series of django
-management commands as below.
+Moving your data from SQLite to PostgreSQL or MySQL/MariaDB is done via executing a series of django
+management commands as below. The commands below use PostgreSQL, but are applicable to MySQL/MariaDB
+with the
.. caution::
@@ -671,6 +714,11 @@ management commands as below.
and filenames (1024 characters). If you have data in these fields that surpasses these
limits, migration to PostgreSQL is not possible and will fail with an error.
+.. warning::
+
+ MySQL is case insensitive by default, treating values like "Name" and "NAME" as identical.
+ See :ref:`advanced-mysql-caveats` for details.
+
1. Stop paperless, if it is running.
2. Tell paperless to use PostgreSQL:
diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst
index 644a38552..11736cf71 100644
--- a/docs/troubleshooting.rst
+++ b/docs/troubleshooting.rst
@@ -321,3 +321,12 @@ Uploading or consuming multiple files at once results in many workers attempting
Consider changing to the PostgreSQL database if you will be processing many documents at once often. Otherwise,
try tweaking the ``PAPERLESS_DB_TIMEOUT`` setting to allow more time for the database to unlock. This may have
minor performance implications.
+
+
+gunicorn fails to start with "is not a valid port number"
+#########################################################
+
+You are likely running using Kubernetes, which automatically creates an environment variable named `${serviceName}_PORT`.
+This is the same environment variable which is used by Paperless to optionally change the port gunicorn listens on.
+
+To fix this, set `PAPERLESS_PORT` again to your desired port, or the default of 8000.
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index daca389d1..0f38dd28f 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -1957,8 +1957,8 @@
391
-
- Redo OCR operation will begin in the background.
+
+ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
src/app/components/document-detail/document-detail.component.ts
494
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html
index 41bd50970..079c562b9 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.html
+++ b/src-ui/src/app/components/app-frame/app-frame.component.html
@@ -17,7 +17,7 @@
-
Дакумент апрацоўваецца paperless-ngx.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Наступная
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
Прыборную панэль можна выкарыстоўваць для паказу захаваных праглядаў, такіх як "Уваходныя". Гэтыя налады знаходзяцца ў Наладах > Захаваныя прагляды пасля таго, як вы іх стварылі.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
Спіс дакументаў паказвае ўсе вашы дакументы і дазваляе фільтраваць, а таксама масава рэдагаваць. Ёсць тры розныя стылі прагляду: спіс, маленькія карты і вялікія карты. Спіс дакументаў, адкрытых для рэдагавання, паказаны на бакавой панэлі.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
Інструменты фільтрацыі дазваляюць хутка знаходзіць дакументы па розных пошуках, датах, тэгах і г.д.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Любую камбінацыю фільтраў можна захаваць у выглядзе 'прагляда', які потым можа адлюстроўвацца на прыборнай панэлі і/або бакавой панэлі.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
З дапамогай гэтых старонак можна кіраваць тэгамі, карэспандэнтамі, тыпамі дакументаў і шляхамі захоўвання. Іх таксама можна стварыць з прагляду рэдагавання дакумента.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
Файлавыя задачы паказваюць вам дакументы, якія былі спажыты, чакаюць або пацярпелі збой падчас працэсу.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Праверце налады для розных налад вэб-праграмы або каб пераключыць налады для захаваных відаў.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
Вобласць адміністратара змяшчае больш пашыраныя элементы кіравання, а таксама налады для аўтаматычнага атрымання электроннай пошты.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Дзякуй! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
Ёсць <em>тоны</em> дадатковыя магчымасці і інфармацыя, якую мы тут не разглядалі, але гэта дапаможа вам пачаць. Праверце дакументацыю або наведайце праект на GitHub, каб даведацца больш або паведаміць аб праблемах.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Пачатак загрузкі...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Вы ўвайшлі як
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Выхад
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Адкрыць дакументы
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Закрыць усё
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Кіраванне
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Карэспандэнты
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Тэгі
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Тыпы дакументаў
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Шляхі захоўвання
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
Файлавыя задачы
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Кіраўнік
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Дакументацыя
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Прапанаваць ідэю
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
даступна.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Націсніце, каб убачыць.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Як гэта працуе?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Даступна абнаўленне
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
Адбылася памылка падчас захавання налад праверкі абнаўленняў.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Ачысціць
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Пасля
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Ачысціць
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Перад
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Любы
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Ужыць
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Націсніце зноў, каб выключыць элементы.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Папярэдняя
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Наступная
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Шлях захоўвання
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Фільтраваць тэгі
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Фільтр карэспандэнтаў
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Фільтр тыпаў дакументаў
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Фільтраваць шляхі захоўвання
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Скінуць фільтры
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 11f1e0c54..daaa9f23d 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -339,11 +339,39 @@
Dokument je zpracováván Paperless-ngx.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Odhlásit se
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Otevřené dokumenty
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Zavřít vše
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Spravovat
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korespondenti
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Štítky
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Typy dokumentu
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Admin
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentace
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Navrhnout úpravu
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is available.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Click to view.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update available
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Smazat
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Po
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Smazat
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Před
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Použít
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Click again to exclude items.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrovat štítky
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrovat korespondenty
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrovat typy dokumentů
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Zrušit filtry
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 3303e8f08..a71de7e21 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -339,11 +339,39 @@
Dokument behandles af paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Næste
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Uploader...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Log ud
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Åbn dokumenter
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Luk alle
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Administrér
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korrespondenter
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiketter
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumenttyper
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Admin
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentation
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Foreslå en idé
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
er tilgængelig.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klik for at se.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Opdatering tilgængelig
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Ryd
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Efter
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Ryd
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Før
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Anvend
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Klik igen for at ekskludere elementer.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Forrige
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Næste
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrer etiketter
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrer korrespondenter
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrer dokumenttyper
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Nulstil filtre
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index b543f6148..4c0f5c771 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -339,11 +339,39 @@
Dokument wird von Paperless verarbeitet.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Zurück
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Weiter
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ Ende
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem 'Posteingang'. Diese Einstellungen werden unter Einstellungen > gespeicherte Ansichten gefunden, sobald Sie mindestens eine eigene Ansicht erstellt haben.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Ziehen Sie hier Dokumente hinein, um mit dem Hochladen zu beginnen oder kopieren Sie Dateien in den 'consume' Ordner. Sie können auch Dokumente überall auf allen anderen Seiten der Web-App ziehen. Wenn Sie dies tun, startet Paperless-ngx seine Algorithmen.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
Die Dokumentenliste zeigt alle Ihre Dokumente an und ermöglicht das Filtern sowie die Massenbearbeitung von mehreren Dokumenten. Es gibt drei verschiedene Ansichtsstile: Liste, kleine Karten und große Karten.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
Mit den Filterwerkzeugen können Sie schnell Dokumente finden, die verschiedene Datumsbereiche, Tags und andere Suchbegriffe enthalten.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Jede Kombination von Filterkriterien kann als 'Ansicht' gespeichert werden, die dann auf dem Dashboard und / oder der Seitenleiste angezeigt werden können.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Schlagwörter, Korrespondenten, Dokumententypen und Speicherpfade können über diese Seiten verwaltet werden. Sie können auch aus der Dokumentbearbeitung erstellt werden.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
Die Dateiaufgaben zeigen Ihnen Dokumente, die verarbeitet wurden, auf Verarbeitung warten oder während der Verarbeitung fehlgeschlagen sind.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Hier finden Sie verschiedene globale Einstellungen für die Anwendung und können die gespeicherten Ansichten verwalten.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
Der Adminbereich enthält erweiterte Steuerelemente sowie die Einstellungen für das automatische Abrufen von E-Mails.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Vielen Dank! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
Es gibt noch <em>erheblich</em> mehr Funktionen und Informationen, die nicht in der Tour abgedeckt wurden, nach der Tour sollten Sie jedoch direkt loslegen können. Schauen Sie sich die Dokumentation an oder besuchen Sie das Projekt auf GitHub um mehr zu erfahren oder Probleme zu melden.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Im Namen jedes Beitragenden zu diesem von der Gemeinschaft unterstützten Projekt, sagen wir, Danke, dass Sie Paperless-ngx benutzen!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Beginne Upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Eingeloggt als
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Abmelden
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Geöffnete Dokumente
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Alle schließen
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Verwalten
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korrespondenten
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Tags
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumenttypen
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Speicherpfad
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
Dateiaufgaben
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administration
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentation
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Eine Idee vorschlagen
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
ist verfügbar.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Zum Anzeigen klicken.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx kann automatisch auf Updates überprüfen
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Wie funktioniert das?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Aktualisierung verfügbar
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
Es ist ein Fehler beim Speichern der Update Einstellungen aufgetreten.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Zurücksetzen
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Nach
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Zurücksetzen
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Vor
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Irgendeines
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Anwenden
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Erneut klicken, um Elemente auszuschließen.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Zurück
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Weiter
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Speicherpfad
@@ -2099,7 +2123,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
387
- OCR wiederholen
+ OCR wiederholen bestätigen
This operation will permanently redo OCR for this document.
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Tags filtern
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Korrespondenten filtern
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Dokumenttypen filtern
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Speicherpfade filtern
@@ -2453,7 +2477,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
388
- Diese Aktion wird die Texterkennung für ausgewählte(s) Dokument(e) wiederholen.
+ Diese Aktion wird OCR permanent für ausgewählte(s) Dokument(e) wiederholen.
Filter by correspondent
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Filter zurücksetzen
@@ -3449,7 +3473,7 @@
src/app/components/manage/settings/settings.component.html
173
- Zeige Benachrichtigungen wenn neue Dokumente erkannt werden
+ Benachrichtigungen anzeigen, wenn neue Dokumente erkannt werden
Show notifications when document processing completes successfully
@@ -3457,7 +3481,7 @@
src/app/components/manage/settings/settings.component.html
174
- Zeige Benachrichtigungen wenn neue Dokumente erfolgreich hinzugefügt wurden
+ Benachrichtigungen anzeigen, wenn die Dokumentenverarbeitung erfolgreich abgeschlossen wurde
Show notifications when document processing fails
@@ -3465,7 +3489,7 @@
src/app/components/manage/settings/settings.component.html
175
- Zeige Benachrichtigungen wenn Dokumente nicht hinzugefügt werden konnten
+ Benachrichtigungen anzeigen, wenn die Verarbeitung des Dokuments fehlschlägt
Suppress notifications on dashboard
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 6c7dbdb2d..5789015a0 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -339,11 +339,39 @@
El documento está siendo procesado por paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Siguiente
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Iniciando subida...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Sesión iniciada como
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Cerrar sesión
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Abrir documentos
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Cerrar todos
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Organizar
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Interlocutores
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiquetas
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipos de documento
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Rutas de almacenamiento
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administrar
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentación
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Sugerir una idea
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
está disponible.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Haz clic para ver.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Actualización disponible
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Limpiar
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Después
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Limpiar
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Antes
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Cualquiera
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Aplicar
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Haga clic de nuevo para excluir los elementos.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Anterior
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Siguiente
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Ruta de almacenamiento
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrar etiquetas
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrar interlocutores
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrar tipos de documento
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtrar rutas de almacenamiento
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Quitar filtros
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index cb238ea69..7d5b0854e 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -339,11 +339,39 @@
Paperless käsittelee asiakirjaa .
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Seuraava
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Aloittaa latausta...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Kirjautunut käyttäjänä
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Kirjaudu ulos
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Avaa asiakirjat
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Sulje kaikki
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Hallitse
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Yhteyshenkilöt
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Tunnisteet
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumenttityypit
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Tallennustilan polut
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Ylläpito
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentaatio
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Ehdota ideaa
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
on saatavilla.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Näytä klikkaamalla.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Päivitys saatavilla
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Tyhjennä
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Jälkeen
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Tyhjennä
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Ennen
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Mikä tahansa
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Käytä
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Klikkaa uudelleen jättääksesi pois kohteita.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Edellinen
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Seuraava
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Tallennustilan polku
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Suodata tunnisteita
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Suodata yhteyshenkilöt
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Suodata asiakirjatyyppejä
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Suodata tallennuspolkuja
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Tyhjennä suodattimet
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 3d77ebb52..4e001637e 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -339,11 +339,39 @@
Le document est en cours de traitement par Paperless-ngx.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Suivant
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
Le tableau de bord peut être utilisé pour afficher les vues enregistrées, comme une boîte de réception. Ces paramètres se trouvent dans Paramètres > Vues sauvegardées une fois que vous en avez créé.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
La liste des documents affiche tous vos documents et permet le filtrage ainsi que l'édition en bloc. Il y a trois styles de vue différents : liste, vignettes et liste détaillée. Une liste de documents actuellement ouverts à l'édition est affichée dans la barre latérale.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
Les outils de filtrage vous permettent de trouver rapidement des documents en utilisant diverses recherches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Toute combinaison de filtres peut être enregistrée sous la forme d'une 'vue' qui peut ensuite être affichée sur le tableau de bord et / ou la barre latérale.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Les tags, correspondants, types de documents et chemins de stockage peuvent tous être gérés à l'aide de ces pages. Ils peuvent également être créés à partir de la vue d'édition du document.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
Les tâches de fichiers vous montrent les documents qui ont été consommés, sont en attente d'être traité ou peuvent avoir échoué au cours du processus.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Consultez les paramètres pour les diverses améliorations apportées à l'application Web ou pour activer les paramètres pour les vues enregistrées.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
La zone Admin contient des contrôles plus avancés ainsi que les paramètres pour la récupération automatique des e-mails.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Merci ! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
Il y a <em>des tonnes</em> de fonctionnalités et d'informations supplémentaires que nous n'avons pas couvertes ici, mais cela devrait vous aider à démarrer. Consultez la documentation ou visitez le projet sur GitHub pour en savoir plus ou pour rapporter des problèmes.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Début du téléversement...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Connecté en tant que
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Déconnexion
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Documents ouverts
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Fermer tout
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Gestion
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Correspondants
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Étiquettes
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Types de document
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Chemins de stockage
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
Traitement des fichiers
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administration
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentation
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Suggérer une idée
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
est disponible.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Cliquer pour visualiser.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Comment ça fonctionne ?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Mise à jour disponible
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Réinitialiser
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Après
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Réinitialiser
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Avant
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Tous
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Appliquer
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Cliquer à nouveau pour exclure des éléments.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Précédent
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Suivant
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Chemin de stockage
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrer les étiquettes
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrer les correspondants
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrer les types de documents
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtrer les chemins de stockage
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Réinitialiser les filtres
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 2010af50b..7e15d8ea1 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -339,11 +339,39 @@
מסמך נמצא בעיבוד ע"י Paperless-NG.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ הבא
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
מאתחל העלאה...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
מחובר כ-
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
התנתק/י
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
מסמכים פתוחים
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
סגור הכל
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
נהל
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
מכותבים
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
תגיות
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
סוגי מסמך
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
נתיבי אכסון
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
מנהל
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
תיעוד
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
הצעה רעיון
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
זמין.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
לחץ להצגה.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
קיים עדכון
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ ניקוי
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
אחרי
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- ניקוי
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
לפני
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
החל
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
לחץ שוב כדי לא לכלול פריטים.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
הקודם
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- הבא
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
נתיב אכסון
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
סנן תגיות
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
סנן מכותבים
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
סנן סוגי מסמכים
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
סנן מיקום אכסון
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Reset filters
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 446cd548e..7f7a05018 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -339,11 +339,39 @@
Dokument je u fazi obrade.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Pokretanje prijenosa...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Prijavljen kao
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Odjavi se
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Otvoreni dokumenti
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Zatvori sve
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Upravljaj
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Dopisnici
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Oznake
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Vrste dokumenta
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Putanje pohrane
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administrator
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentacija
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Predloži ideju
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
je dostupno.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klikni za prikaz.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Dostupno ažuriranje
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Očisti
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Nakon
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Očisti
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Prije
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Bilo koji
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Primijeni
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Pritisnite ponovo da biste isključili stavke.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filter tags
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filter correspondents
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filter document types
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Reset filters
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 47aadf0f4..331a8e486 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -339,11 +339,39 @@
Paperless sta elaborando il documento .
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Successivo
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
La dashboard può essere usata per mostrare le viste salvate, come una 'Inbox'. Queste impostazioni si trovano in Impostazioni > Viste salvate, dopo averne create alcune.
@@ -351,15 +379,15 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
- Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
+ Trascina i documenti qui per iniziare a caricarli, oppure posizionali nella cartella di elaborazione. Puoi anche trascinare i documenti ovunque su tutte le altre pagine della web app. Una volta fatto, Paperless-ngx inizierà a formare i suoi algoritmi di machine learning.
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
L'elenco dei documenti mostra tutti i tuoi documenti e consente di filtrarli e modificarli in blocco. Ci sono tre stili di visualizzazione diversi: elenco, carte piccole e carte grandi. Un elenco di documenti attualmente aperti per la modifica è mostrato nella barra laterale.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
Gli strumenti di filtraggio ti consentono di trovare rapidamente documenti utilizzando vari termini di ricerca, date, tag, ecc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Qualsiasi combinazione di filtri può essere salvata come 'vista' che può essere visualizzata sulla dashboard e/o nella barra laterale.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tag, corrispondenti, tipi di documenti e percorsi di archiviazione possono essere gestiti utilizzando queste pagine. Possono anche essere creati dalla vista di modifica dei documenti.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
Le Attività File mostrano i documenti che sono stati consumati, sono in attesa di esserlo, o possano aver portato a un fallimento durante l'Attività.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Controlla le impostazioni per varie modifiche all'app web o per attivare o disattivare le impostazioni per le viste salvate.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
L'area di Amministrazione contiene impostazioni più avanzate e per il recupero automatico delle e-mail.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Grazie! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
Ci sono <em>tonnellate</em> di caratteristiche e informazioni che non abbiamo coperto qui, ma questo dovrebbe essere abbastanza per cominciare. Consulta la documentazione o visita il progetto su GitHub per saperne di più o per segnalare problemi.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Avvio caricamento...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Accesso effettuato come
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Esci
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Apri documenti
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Chiudi tutti
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Gestisci
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Corrispondenti
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etichette
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipi di documento
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Percorsi di archiviazione
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
Attività File
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Amministratore
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentazione
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Suggerisci un'idea
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
è disponibile.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Clicca per visualizzare.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx può controllare automaticamente la presenza di aggiornamenti
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Come funziona?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Aggiornamento disponibile
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Pulisci
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Dopo
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Pulisci
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Prima
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Qualsiasi
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Applica
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Clicca di nuovo per escludere gli elementi.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Precedente
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Successivo
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Percorso archiviazione
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtra tag
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtra corrispondenti
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtra tipi di documento
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtra percorsi di archiviazione
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Ripristina filtri
@@ -3899,7 +3923,7 @@
src/app/guards/dirty-saved-view.guard.ts
26
- You have unsaved changes to the saved view
+ Hai modifiche non salvate alla vista salvata
Are you sure you want to close this saved view?
@@ -3907,7 +3931,7 @@
src/app/guards/dirty-saved-view.guard.ts
30
- Are you sure you want to close this saved view?
+ Sei sicuro di voler chiudere questa vista salvata?
Save and close
@@ -3915,7 +3939,7 @@
src/app/guards/dirty-saved-view.guard.ts
34
- Save and close
+ Salva e chiudi
(no title)
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index aa3be8443..aeb52b3b9 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -339,11 +339,39 @@
Dokument gëtt vu Paperless-ngx veraarbecht.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Weider
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Upload fänkt un...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Ageloggt als
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Ofmellen
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Oppen Dokumenter
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
All zoumaachen
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Verwalten
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korrespondenten
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiketten
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumententypen
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Späicherpfaden
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administratioun
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentatioun
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Eng Iddi virschloen
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
ass disponibel.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klicke fir unzeweisen.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update disponibel
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Läschen
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
No
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Läschen
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Virun
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Applizéieren
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Klickt nach eng Kéier fir Elementer auszeschléissen.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Zréck
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Weider
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Späicherpfad
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Etikette filteren
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Korrespondente filteren
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Dokumententype filteren
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Filteren zrécksetzen
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 801654c79..83a24ee16 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -339,11 +339,39 @@
Document wordt verwerkt door paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Volgende
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Bedankt! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Upload starten...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Ingelogd als
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Afmelden
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Open documenten
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Alles sluiten
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Beheren
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Correspondenten
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Labels
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Documenttypen
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Opslag paden
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Beheer
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Handleiding
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Ideeënbus
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is beschikbaar.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klik om te bekijken.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update beschikbaar
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Leegmaken
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Na
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Leegmaken
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Voor
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Alle
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Toepassen
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Klik nogmaals om items uit te sluiten.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Vorige
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Volgende
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Opslag pad
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Labels filteren
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Correspondenten filteren
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Documenttypes filteren
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Filters terug zetten
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 69d5b4d59..e326f07eb 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -339,11 +339,39 @@
Document is being processed by paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Neste
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Starter opplasting...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Logg ut
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Åpne dokumenter
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Lukk alle
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Behandle
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korrespondenter
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Tags
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumenttyper
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Lagringssti
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Admin
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentasjon
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Foreslå en idé
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
er tilgjengelig.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klikk for å se.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Oppdatering er tilgjengelig
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Tøm
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Etter
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Tøm
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Før
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Enhver
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Bruk
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Klikk igjen for å ekskludere elementer.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Forrige
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Neste
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Lagringssti
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrer etter tagger
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrere korrespondenter
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrer dokumenttyper
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtrere lagringsbaner
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Tilbakestille filtre
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 33d55be1d..c7228f3ff 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -339,11 +339,39 @@
Dokument jest przetwarzany przez paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Następny
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Rozpoczęcie wysyłania...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Zalogowany jako
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Wyloguj
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Otwarte dokumenty
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Zamknij wszystkie
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Zarządzaj
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Nadawcy
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Tagi
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Typy dokumentów
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Ścieżki składowania
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administracja
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentacja
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Zaproponuj pomysł
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
jest dostępny.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Kliknij, aby zobaczyć.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Aktualizacja jest dostępna
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Wyczyść
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Po
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Wyczyść
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Przed
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Zastosuj
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Kliknij ponownie, aby wykluczyć elementy.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Poprzedni
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Następny
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Ścieżki składowania
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtruj tagi
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtruj nadawców
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtruj typy dokumentów
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtruj ścieżkę przechowywania
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Zresetuj filtry
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 8c844a941..6f8fb3702 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -339,11 +339,39 @@
Documento está sendo processado pelo paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Encerrar sessão
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Abrir documentos
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Fechar todos
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Gerenciar
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Correspondentes
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiquetas
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipos de documento
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Admin
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentação
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Sugerir uma idéia
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is available.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Click to view.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update available
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Limpar
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Antes
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Limpar
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Depois
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Aplicar
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Clique novamente para excluir itens.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrar etiquetas
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrar correspondentes
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrar tipos de documento
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Limpar filtros
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 4664a0a50..c79864126 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -339,11 +339,39 @@
Documento está a ser processado pelo paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Seguinte
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Obrigado! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
A iniciar o carregamento...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Terminar sessão
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Abrir documentos
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Fechar todos
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Gerir
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Correspondentes
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiquetas
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipos de documento
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administrador
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentação
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
Github
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Sugerir uma ideia
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
está disponível.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Clique para ver.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Como é que isto funciona?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Atualização disponível
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Limpar
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Antes
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Limpar
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Depois
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Aplicar
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Clique novamente para excluir itens.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Anterior
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Seguinte
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrar etiquetas
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrar correspondentes
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrar tipos de documentos
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Limpar filtros
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index b2d69484f..e40adcb2b 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -339,11 +339,39 @@
Documentul este în procesare.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Deconectare
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Deschide documente
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Închide tot
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Administrează
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Corespondenți
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etichete
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipuri de documente
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administrator
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Documentație
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Sugestii
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is available.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Click to view.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update available
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Curăță
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
După
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Curăță
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Înainte
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Aplică
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Click din nou pentru a exclude elemente.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrează etichete
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrează corespondenți
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrează tipuri de documente
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Resetare filtre
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 9c8400665..4c672ad75 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -339,11 +339,39 @@
Документ обрабатывается paperless
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Следующий
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Выход
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Открыть документы
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Закрыть всё
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Управлять
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Корреспонденты
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Теги
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Типы документов
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Пути хранения
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Администрирование
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Документация
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Предложить идею
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
доступно.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Нажмите для просмотра.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Доступно обновление
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Очистить
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
После
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Очистить
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
До
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Любой
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Подтвердить
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Нажмите еще раз, чтобы исключить элементы.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Предыдущий
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Следующий
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Путь к хранилищу
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Фильтр тегов
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Фильтр корреспондентов
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Фильтр типа документов
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Фильтр по пути хранения
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Сбросить фильтры
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 98aa00546..c07344ce7 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -339,11 +339,39 @@
Dokument je v postopku obdelave.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Naslednji
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Začetek nalaganja...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Prijavljen kot
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Odjavi se
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Odpri dokumente
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Zapri vse
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Upravljaj
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Dopisniki
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Oznake
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Vrste dokumentov
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Poti do shrambe
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Skrbnik
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentacija
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Podaj predlog
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
je na voljo.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klikni za ogled.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Posodobitev na voljo
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Počisti
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Po
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Počisti
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Pred
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Poljuben
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Uporabi
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Kliknite znova, da izključite elemente.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Prejšnji
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Naslednji
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Pot do shrambe
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtriraj oznake
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrirajte dopisnike
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrirajte vrste dokumentov
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtriraj poti shrambe
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Ponastavi filtre
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 33e8f06a1..379f043e6 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -339,59 +339,87 @@
Dokument obrađuje Paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prethodni
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Sledeći
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ Kraj
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
- The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
+ Kontrolna tabla se može koristiti za prikazivanje sačuvanih pogleda, kao što je 'Inbox'. Ta podešavanja se nalaze pod Podešavanja > Sačuvani pogledi kada budete kreirali neke.
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
- Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
+ Prevucite i otpustite dokumente ovde da biste započeli otpremanje ili ih stavite u folder za konzumiranje. Takođe možete da prevučete i otpustite dokumente bilo gde na svim drugim stranicama veb aplikacije. Kada to učinite, Paperless-ngx će početi da trenira svoje algoritme za mašinsko učenje.
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
- The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
+ Lista dokumenata prikazuje sve vaše dokumente i omogućava filtriranje kao i grupno uređivanje. Postoje tri različita stila prikaza: lista, male kartice i velike kartice. Na bočnoj traci je prikazana lista dokumenata koji su trenutno otvoreni za uređivanje.
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
- The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
+ Alati za filtriranje vam omogućavaju da brzo pronađete dokumente koristeći različite pretrage, datume, oznake itd.
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
- Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
+ Bilo koja kombinacija filtera se može sačuvati kao 'pogled' koji se zatim može prikazati na kontrolnoj tabli i/ili bočnoj traci.
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
- Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
+ Oznake, korespodenti, tipovi dokumenata i putanje skladištenja svi se mogu se uređivati pomoću ovih stranica. Takođe se mogu kreirati iz prikaza za uređivanje dokumenta.
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
Obrada dokumenata vam prikazuje dokumenta koja su obrađena, čekaju da budu obrađena ili možda nisu uspešno obrađena.
@@ -399,23 +427,23 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
- Check out the settings for various tweaks to the web app or to toggle settings for saved views.
+ Proverite podešavanja za različita podešavanja veb aplikacije ili da biste uključili podešavanja za sačuvane poglede.
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
- The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
+ Administracija sadrži naprednije kontrole, kao i podešavanja za automatsko preuzimanje e-pošte.
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Hvala vam! 🙏
@@ -423,23 +451,23 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
- There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
+ Ima <em>tona</em> više funkcija i informacija koje ovde nismo pokrili, ali ovo bi trebalo da vas pokrene. Pogledajte dokumentaciju ili posetite projekat na GitHub-u da biste saznali više ili prijavili probleme.
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
- Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
+ Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx!
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Pokretanje otpremanja...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Ulogovan kao
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Odjavi se
@@ -500,27 +528,27 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
1
- Komandna tabla
+ Kontrolna tabla
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Otvorena dokumenta
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Zatvori svе
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Upravljanje
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korespodenti
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Oznake
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Tipovi dokumenta
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Putanja skladišta
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
Obrada dokumenata
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Administracija
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentacija
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Predložite ideju
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
je dostupno.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Klik za prеglеd.
@@ -760,15 +788,15 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
- Paperless-ngx can automatically check for updates
+ Paperless-ngx može automatski da proveri da li postoje ažuriranja
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
Kako ovo radi?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Dostupno jе ažuriranjе
@@ -796,9 +824,25 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
- An error occurred while saving update checking settings.
+ Došlo je do greške prilikom čuvanja podešavanja.
+
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Očisti
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Posle
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Očisti
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Pre
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Bilo koja
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Primeni
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Kliknite ponovo da biste isključili stavke.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1575,7 +1607,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
4
- You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.
+ Spremni ste da počnete da otpremate dokumente! Istražite različite funkcije ove veb aplikacije sami ili započnite brzi obilazak koristeći dugme ispod.
More detail on how to use and configure Paperless-ngx is always available in the documentation.
@@ -1583,7 +1615,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
5
- More detail on how to use and configure Paperless-ngx is always available in the documentation.
+ Više detalja o tome kako da koristite i konfigurišete Paperless-ngx je uvek dostupno u dokumentaciji.
Thanks for being a part of the Paperless-ngx community!
@@ -1591,7 +1623,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
8
- Thanks for being a part of the Paperless-ngx community!
+ Hvala što ste deo Paperless-ngx zajednice!
Start the tour
@@ -1599,7 +1631,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
9
- Započni upoznavanje
+ Započni obilazak
Searching document with asn
@@ -1789,14 +1821,6 @@
Prethodni
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Sledeći
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Putanja skladišta
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtriraj oznake
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtriraj korespodente
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtriraj tip dokumenta
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filtriraj po putanji skladišta
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Poništavanje filtera
@@ -3177,7 +3201,7 @@
src/app/components/manage/settings/settings.component.html
2
- Započni upoznavanje
+ Započni obilazak
General
@@ -3361,7 +3385,7 @@
src/app/components/manage/settings/settings.component.html
134,137
- Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+ Provera ažuriranja funkcioniše pingovanjem javnog Github API za najnovije izdanje da bi se utvrdilo da li je nova verzija dostupna. Stvarno ažuriranje aplikacije i dalje mora da se obavlja ručno.
No tracking data is collected by the app in any way.
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 4251bb632..a00717837 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -339,11 +339,39 @@
Dokument behandlas av paperless.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Logga ut
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Öppna dokument
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Stäng alla
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Hantera
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Korrespondenter
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Taggar
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Dokumenttyper
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Admin
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokumentation
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Föreslå en idé
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is available.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Click to view.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Update available
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Rensa
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Efter
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Rensa
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Innan
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Tillämpa
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Click again to exclude items.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Filtrera taggar
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Filtrera korrespondenter
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Filtrera dokument typ
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Återställ filter
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index cf0beb28a..351a78d70 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -339,11 +339,39 @@
adlı belge paperless tarafından işleniyor.
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
Initiating upload...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
Logged in as
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
Oturumu kapat
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
Belgeleri aç
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
Tümünü kapat
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
Yönet
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
Muhabirler
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
Etiketler
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
Belge türleri
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
Storage paths
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
Yönetici
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
Dokümantasyon
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
Github
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
Bir fikir öner
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
is available.
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
Görüntülemek için tıklayın.
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
Güncelleme mevcut
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ Temizle
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
Sonrası
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- Temizle
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
Öncesinde
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
Any
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
Uygula
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
Öğeleri hariç tutmak için yeniden tıklatın.
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
Previous
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- Next
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
Storage path
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
Etiketlere göre filtrele
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
Muhabire göre filtrele
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
Belge türlerini göre filtrele
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
Filter storage paths
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
Filtreleri sıfırla
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index c040b6fcb..6a18f9287 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -339,11 +339,39 @@
文档 正在被 paperless 处理中。
+
+ Prev
+
+ src/app/app.component.ts
+ 119
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 120
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 55
+
+ 下一个
+
+
+ End
+
+ src/app/app.component.ts
+ 121
+
+ End
+
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
src/app/app.component.ts
- 122
+ 126
The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some.
@@ -351,7 +379,7 @@
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
src/app/app.component.ts
- 129
+ 136
Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
@@ -359,7 +387,7 @@
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
src/app/app.component.ts
- 135
+ 145
The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
@@ -367,7 +395,7 @@
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
src/app/app.component.ts
- 144
+ 157
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -375,7 +403,7 @@
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
src/app/app.component.ts
- 151
+ 167
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -383,7 +411,7 @@
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
src/app/app.component.ts
- 157
+ 176
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -391,7 +419,7 @@
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
src/app/app.component.ts
- 163
+ 185
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -399,7 +427,7 @@
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
src/app/app.component.ts
- 169
+ 194
Check out the settings for various tweaks to the web app or to toggle settings for saved views.
@@ -407,7 +435,7 @@
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
src/app/app.component.ts
- 175
+ 203
The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.
@@ -415,7 +443,7 @@
Thank you! 🙏
src/app/app.component.ts
- 180
+ 211
Thank you! 🙏
@@ -423,7 +451,7 @@
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
src/app/app.component.ts
- 182
+ 213
There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
@@ -431,7 +459,7 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
src/app/app.component.ts
- 184
+ 215
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -439,7 +467,7 @@
Initiating upload...
src/app/app.component.ts
- 230
+ 264
正在初始化上传...
@@ -464,7 +492,7 @@
Logged in as
src/app/components/app-frame/app-frame.component.html
- 34
+ 39
登录为
@@ -472,15 +500,15 @@
Settings
src/app/components/app-frame/app-frame.component.html
- 40
+ 45
src/app/components/app-frame/app-frame.component.html
- 166
+ 171
src/app/components/app-frame/app-frame.component.html
- 169
+ 174
src/app/components/manage/settings/settings.component.html
@@ -492,7 +520,7 @@
Logout
src/app/components/app-frame/app-frame.component.html
- 45
+ 50
退出
@@ -500,11 +528,11 @@
Dashboard
src/app/components/app-frame/app-frame.component.html
- 64
+ 69
src/app/components/app-frame/app-frame.component.html
- 67
+ 72
src/app/components/dashboard/dashboard.component.html
@@ -516,11 +544,11 @@
Documents
src/app/components/app-frame/app-frame.component.html
- 71
+ 76
src/app/components/app-frame/app-frame.component.html
- 74
+ 79
src/app/components/document-list/document-list.component.ts
@@ -548,7 +576,7 @@
Saved views
src/app/components/app-frame/app-frame.component.html
- 80
+ 85
src/app/components/manage/settings/settings.component.html
@@ -560,7 +588,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 94
+ 99
打开文档
@@ -568,11 +596,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 110
+ 115
src/app/components/app-frame/app-frame.component.html
- 113
+ 118
全部关闭
@@ -580,7 +608,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 119
+ 124
管理
@@ -588,11 +616,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 123
+ 128
src/app/components/app-frame/app-frame.component.html
- 126
+ 131
联系人
@@ -600,11 +628,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 130
+ 135
src/app/components/app-frame/app-frame.component.html
- 133
+ 138
src/app/components/common/input/tags/tags.component.html
@@ -616,7 +644,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 22
+ 27
标签
@@ -624,11 +652,11 @@
Document types
src/app/components/app-frame/app-frame.component.html
- 137
+ 142
src/app/components/app-frame/app-frame.component.html
- 140
+ 145
文档类型
@@ -636,11 +664,11 @@
Storage paths
src/app/components/app-frame/app-frame.component.html
- 144
+ 149
src/app/components/app-frame/app-frame.component.html
- 147
+ 152
保存路径
@@ -648,7 +676,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 151
+ 156
src/app/components/manage/tasks/tasks.component.html
@@ -660,7 +688,7 @@
File Tasks
src/app/components/app-frame/app-frame.component.html
- 155
+ 160
File Tasks
@@ -668,11 +696,11 @@
Logs
src/app/components/app-frame/app-frame.component.html
- 159
+ 164
src/app/components/app-frame/app-frame.component.html
- 162
+ 167
src/app/components/manage/logs/logs.component.html
@@ -684,11 +712,11 @@
Admin
src/app/components/app-frame/app-frame.component.html
- 173
+ 178
src/app/components/app-frame/app-frame.component.html
- 176
+ 181
后台管理
@@ -696,7 +724,7 @@
Info
src/app/components/app-frame/app-frame.component.html
- 182
+ 187
src/app/components/manage/tasks/tasks.component.html
@@ -708,11 +736,11 @@
Documentation
src/app/components/app-frame/app-frame.component.html
- 186
+ 191
src/app/components/app-frame/app-frame.component.html
- 189
+ 194
帮助文档
@@ -720,11 +748,11 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 194
+ 199
src/app/components/app-frame/app-frame.component.html
- 197
+ 202
GitHub
@@ -732,11 +760,11 @@
Suggest an idea
src/app/components/app-frame/app-frame.component.html
- 199
+ 204
src/app/components/app-frame/app-frame.component.html
- 203
+ 208
提出建议
@@ -744,7 +772,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
可用
@@ -752,7 +780,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 212
+ 217
点击查看
@@ -760,7 +788,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 216
+ 221
Paperless-ngx can automatically check for updates
@@ -768,7 +796,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 223,225
+ 228,230
How does this work?
@@ -776,7 +804,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 234
+ 239
有可用更新
@@ -796,10 +824,26 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 202
+ 216
An error occurred while saving update checking settings.
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 1
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 24
+
+
+ src/app/components/common/date-dropdown/date-dropdown.component.html
+ 47
+
+ 清除
+
Cancel
@@ -844,27 +888,15 @@
After
src/app/components/common/date-dropdown/date-dropdown.component.html
- 21
+ 19
之后
-
- Clear
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 26
-
-
- src/app/components/common/date-dropdown/date-dropdown.component.html
- 49
-
- 清除
-
Before
src/app/components/common/date-dropdown/date-dropdown.component.html
- 44
+ 42
之前
@@ -1252,7 +1284,7 @@
All
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 21
+ 16
src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -1264,7 +1296,7 @@
Any
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 23
+ 18
所有
@@ -1272,7 +1304,7 @@
Apply
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 37
+ 32
应用
@@ -1280,7 +1312,7 @@
Click again to exclude items.
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
- 43
+ 38
再次单击以排除项目。
@@ -1422,7 +1454,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 54
+ 59
src/app/components/manage/tasks/tasks.component.html
@@ -1789,14 +1821,6 @@
上一个
-
- Next
-
- src/app/components/document-detail/document-detail.component.html
- 55
-
- 下一个
-
Details
@@ -1837,7 +1861,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 30
+ 35
src/app/services/rest/document.service.ts
@@ -1861,7 +1885,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 37
+ 42
src/app/services/rest/document.service.ts
@@ -1885,7 +1909,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 44
+ 49
保存路径
@@ -2177,7 +2201,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 23
+ 28
过滤器标签
@@ -2189,7 +2213,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 31
+ 36
过滤联系人
@@ -2201,7 +2225,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 38
+ 43
过滤文档类型
@@ -2213,7 +2237,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 45
+ 50
筛选存储路径
@@ -2743,7 +2767,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
- 60
+ 65
src/app/services/rest/document.service.ts
@@ -2779,7 +2803,7 @@
Reset filters
src/app/components/document-list/filter-editor/filter-editor.component.html
- 73
+ 78
重置过滤器
diff --git a/src/documents/consumer.py b/src/documents/consumer.py
index f542a1d98..b46b3a683 100644
--- a/src/documents/consumer.py
+++ b/src/documents/consumer.py
@@ -2,7 +2,8 @@ import datetime
import hashlib
import os
import uuid
-from subprocess import Popen
+from subprocess import CompletedProcess
+from subprocess import run
from typing import Optional
from typing import Type
@@ -148,13 +149,20 @@ class Consumer(LoggingMixin):
script_env["DOCUMENT_SOURCE_PATH"] = filepath_arg
try:
- Popen(
- (
+ completed_proc = run(
+ args=[
settings.PRE_CONSUME_SCRIPT,
filepath_arg,
- ),
+ ],
env=script_env,
- ).wait()
+ capture_output=True,
+ )
+
+ self._log_script_outputs(completed_proc)
+
+ # Raises exception on non-zero output
+ completed_proc.check_returncode()
+
except Exception as e:
self._fail(
MESSAGE_PRE_CONSUME_SCRIPT_ERROR,
@@ -208,8 +216,8 @@ class Consumer(LoggingMixin):
script_env["DOCUMENT_ORIGINAL_FILENAME"] = str(document.original_filename)
try:
- Popen(
- (
+ completed_proc = run(
+ args=[
settings.POST_CONSUME_SCRIPT,
str(document.pk),
document.get_public_filename(),
@@ -219,9 +227,16 @@ class Consumer(LoggingMixin):
reverse("document-thumb", kwargs={"pk": document.pk}),
str(document.correspondent),
str(",".join(document.tags.all().values_list("name", flat=True))),
- ),
+ ],
env=script_env,
- ).wait()
+ capture_output=True,
+ )
+
+ self._log_script_outputs(completed_proc)
+
+ # Raises exception on non-zero output
+ completed_proc.check_returncode()
+
except Exception as e:
self._fail(
MESSAGE_POST_CONSUME_SCRIPT_ERROR,
@@ -444,7 +459,12 @@ class Consumer(LoggingMixin):
return document
- def _store(self, text, date, mime_type) -> Document:
+ def _store(
+ self,
+ text: str,
+ date: Optional[datetime.datetime],
+ mime_type: str,
+ ) -> Document:
# If someone gave us the original filename, use it instead of doc.
@@ -510,3 +530,39 @@ class Consumer(LoggingMixin):
with open(source, "rb") as read_file:
with open(target, "wb") as write_file:
write_file.write(read_file.read())
+
+ def _log_script_outputs(self, completed_process: CompletedProcess):
+ """
+ Decodes a process stdout and stderr streams and logs them to the main log
+ """
+ # Log what the script exited as
+ self.log(
+ "info",
+ f"{completed_process.args[0]} exited {completed_process.returncode}",
+ )
+
+ # Decode the output (if any)
+ if len(completed_process.stdout):
+ stdout_str = (
+ completed_process.stdout.decode("utf8", errors="ignore")
+ .strip()
+ .split(
+ "\n",
+ )
+ )
+ self.log("info", "Script stdout:")
+ for line in stdout_str:
+ self.log("info", line)
+
+ if len(completed_process.stderr):
+ stderr_str = (
+ completed_process.stderr.decode("utf8", errors="ignore")
+ .strip()
+ .split(
+ "\n",
+ )
+ )
+
+ self.log("warning", "Script stderr:")
+ for line in stderr_str:
+ self.log("warning", line)
diff --git a/src/documents/parsers.py b/src/documents/parsers.py
index f62199677..e2309b366 100644
--- a/src/documents/parsers.py
+++ b/src/documents/parsers.py
@@ -260,7 +260,7 @@ def parse_date_generator(filename, text) -> Iterator[datetime.datetime]:
try:
date = __parser(date_string, date_order)
- except (TypeError, ValueError):
+ except Exception:
# Skip all matches that do not parse to a proper date
date = None
diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py
index 865c83935..c28ea8e2b 100644
--- a/src/documents/signals/handlers.py
+++ b/src/documents/signals/handlers.py
@@ -447,7 +447,8 @@ def update_filename_and_move_files(sender, instance, **kwargs):
archive_filename=instance.archive_filename,
)
- except (OSError, DatabaseError, CannotMoveFilesException):
+ except (OSError, DatabaseError, CannotMoveFilesException) as e:
+ logger.warn(f"Exception during file handling: {e}")
# This happens when either:
# - moving the files failed due to file system errors
# - saving to the database failed due to database errors
@@ -456,9 +457,11 @@ def update_filename_and_move_files(sender, instance, **kwargs):
# Try to move files to their original location.
try:
if move_original and os.path.isfile(instance.source_path):
+ logger.info("Restoring previous original path")
os.rename(instance.source_path, old_source_path)
if move_archive and os.path.isfile(instance.archive_path):
+ logger.info("Restoring previous archive path")
os.rename(instance.archive_path, old_archive_path)
except Exception:
@@ -468,7 +471,7 @@ def update_filename_and_move_files(sender, instance, **kwargs):
# issue that's going to get caught by the santiy checker.
# All files remain in place and will never be overwritten,
# so this is not the end of the world.
- # B: if moving the orignal file failed, nothing has changed
+ # B: if moving the original file failed, nothing has changed
# anyway.
pass
diff --git a/src/documents/tasks.py b/src/documents/tasks.py
index 667c3d9df..f5bad665a 100644
--- a/src/documents/tasks.py
+++ b/src/documents/tasks.py
@@ -3,6 +3,7 @@ import logging
import os
import shutil
import uuid
+from datetime import datetime
from pathlib import Path
from typing import Type
@@ -98,6 +99,14 @@ def consume_file(
path = Path(path).resolve()
+ # Celery converts this to a string, but everything expects a datetime
+ # Long term solution is to not use JSON for the serializer but pickle instead
+ if override_created is not None and isinstance(override_created, str):
+ try:
+ override_created = datetime.fromisoformat(override_created)
+ except Exception:
+ pass
+
# check for separators in current document
if settings.CONSUMER_ENABLE_BARCODES:
diff --git a/src/documents/tests/test_consumer.py b/src/documents/tests/test_consumer.py
index 3b94b889b..f6685ad02 100644
--- a/src/documents/tests/test_consumer.py
+++ b/src/documents/tests/test_consumer.py
@@ -2,7 +2,9 @@ import datetime
import os
import re
import shutil
+import stat
import tempfile
+from subprocess import CalledProcessError
from unittest import mock
from unittest.mock import MagicMock
@@ -801,7 +803,16 @@ class TestConsumerCreatedDate(DirectoriesMixin, TestCase):
class PreConsumeTestCase(TestCase):
- @mock.patch("documents.consumer.Popen")
+ def setUp(self) -> None:
+
+ # this prevents websocket message reports during testing.
+ patcher = mock.patch("documents.consumer.Consumer._send_progress")
+ self._send_progress = patcher.start()
+ self.addCleanup(patcher.stop)
+
+ return super().setUp()
+
+ @mock.patch("documents.consumer.run")
@override_settings(PRE_CONSUME_SCRIPT=None)
def test_no_pre_consume_script(self, m):
c = Consumer()
@@ -809,7 +820,7 @@ class PreConsumeTestCase(TestCase):
c.run_pre_consume_script()
m.assert_not_called()
- @mock.patch("documents.consumer.Popen")
+ @mock.patch("documents.consumer.run")
@mock.patch("documents.consumer.Consumer._send_progress")
@override_settings(PRE_CONSUME_SCRIPT="does-not-exist")
def test_pre_consume_script_not_found(self, m, m2):
@@ -818,7 +829,7 @@ class PreConsumeTestCase(TestCase):
c.path = "path-to-file"
self.assertRaises(ConsumerError, c.run_pre_consume_script)
- @mock.patch("documents.consumer.Popen")
+ @mock.patch("documents.consumer.run")
def test_pre_consume_script(self, m):
with tempfile.NamedTemporaryFile() as script:
with override_settings(PRE_CONSUME_SCRIPT=script.name):
@@ -830,14 +841,78 @@ class PreConsumeTestCase(TestCase):
args, kwargs = m.call_args
- command = args[0]
+ command = kwargs["args"]
self.assertEqual(command[0], script.name)
self.assertEqual(command[1], "path-to-file")
+ @mock.patch("documents.consumer.Consumer.log")
+ def test_script_with_output(self, mocked_log):
+ """
+ GIVEN:
+ - A script which outputs to stdout and stderr
+ WHEN:
+ - The script is executed as a consume script
+ THEN:
+ - The script's outputs are logged
+ """
+ with tempfile.NamedTemporaryFile(mode="w") as script:
+ # Write up a little script
+ with script.file as outfile:
+ outfile.write("#!/usr/bin/env bash\n")
+ outfile.write("echo This message goes to stdout\n")
+ outfile.write("echo This message goes to stderr >&2")
+
+ # Make the file executable
+ st = os.stat(script.name)
+ os.chmod(script.name, st.st_mode | stat.S_IEXEC)
+
+ with override_settings(PRE_CONSUME_SCRIPT=script.name):
+ c = Consumer()
+ c.path = "path-to-file"
+ c.run_pre_consume_script()
+
+ mocked_log.assert_called()
+
+ mocked_log.assert_any_call("info", "This message goes to stdout")
+ mocked_log.assert_any_call("warning", "This message goes to stderr")
+
+ def test_script_exit_non_zero(self):
+ """
+ GIVEN:
+ - A script which exits with a non-zero exit code
+ WHEN:
+ - The script is executed as a pre-consume script
+ THEN:
+ - A ConsumerError is raised
+ """
+ with tempfile.NamedTemporaryFile(mode="w") as script:
+ # Write up a little script
+ with script.file as outfile:
+ outfile.write("#!/usr/bin/env bash\n")
+ outfile.write("exit 100\n")
+
+ # Make the file executable
+ st = os.stat(script.name)
+ os.chmod(script.name, st.st_mode | stat.S_IEXEC)
+
+ with override_settings(PRE_CONSUME_SCRIPT=script.name):
+ c = Consumer()
+ c.path = "path-to-file"
+ self.assertRaises(ConsumerError, c.run_pre_consume_script)
+
class PostConsumeTestCase(TestCase):
- @mock.patch("documents.consumer.Popen")
+ def setUp(self) -> None:
+
+ # this prevents websocket message reports during testing.
+ patcher = mock.patch("documents.consumer.Consumer._send_progress")
+ self._send_progress = patcher.start()
+ self.addCleanup(patcher.stop)
+
+ return super().setUp()
+
+ @mock.patch("documents.consumer.run")
@override_settings(POST_CONSUME_SCRIPT=None)
def test_no_post_consume_script(self, m):
doc = Document.objects.create(title="Test", mime_type="application/pdf")
@@ -858,7 +933,7 @@ class PostConsumeTestCase(TestCase):
c.filename = "somefile.pdf"
self.assertRaises(ConsumerError, c.run_post_consume_script, doc)
- @mock.patch("documents.consumer.Popen")
+ @mock.patch("documents.consumer.run")
def test_post_consume_script_simple(self, m):
with tempfile.NamedTemporaryFile() as script:
with override_settings(POST_CONSUME_SCRIPT=script.name):
@@ -868,7 +943,7 @@ class PostConsumeTestCase(TestCase):
m.assert_called_once()
- @mock.patch("documents.consumer.Popen")
+ @mock.patch("documents.consumer.run")
def test_post_consume_script_with_correspondent(self, m):
with tempfile.NamedTemporaryFile() as script:
with override_settings(POST_CONSUME_SCRIPT=script.name):
@@ -889,7 +964,7 @@ class PostConsumeTestCase(TestCase):
args, kwargs = m.call_args
- command = args[0]
+ command = kwargs["args"]
self.assertEqual(command[0], script.name)
self.assertEqual(command[1], str(doc.pk))
@@ -897,3 +972,29 @@ class PostConsumeTestCase(TestCase):
self.assertEqual(command[6], f"/api/documents/{doc.pk}/thumb/")
self.assertEqual(command[7], "my_bank")
self.assertCountEqual(command[8].split(","), ["a", "b"])
+
+ def test_script_exit_non_zero(self):
+ """
+ GIVEN:
+ - A script which exits with a non-zero exit code
+ WHEN:
+ - The script is executed as a post-consume script
+ THEN:
+ - A ConsumerError is raised
+ """
+ with tempfile.NamedTemporaryFile(mode="w") as script:
+ # Write up a little script
+ with script.file as outfile:
+ outfile.write("#!/usr/bin/env bash\n")
+ outfile.write("exit -500\n")
+
+ # Make the file executable
+ st = os.stat(script.name)
+ os.chmod(script.name, st.st_mode | stat.S_IEXEC)
+
+ with override_settings(POST_CONSUME_SCRIPT=script.name):
+ c = Consumer()
+ doc = Document.objects.create(title="Test", mime_type="application/pdf")
+ c.path = "path-to-file"
+ with self.assertRaises(ConsumerError):
+ c.run_post_consume_script(doc)
diff --git a/src/locale/ar_BH/LC_MESSAGES/django.po b/src/locale/ar_BH/LC_MESSAGES/django.po
deleted file mode 100644
index c2f70f7bb..000000000
--- a/src/locale/ar_BH/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,698 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: paperless-ng\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-05-16 09:38+0000\n"
-"PO-Revision-Date: 2021-11-23 18:07\n"
-"Last-Translator: \n"
-"Language-Team: Arabic, Bahrain\n"
-"Language: ar_BH\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
-"X-Crowdin-Project: paperless-ng\n"
-"X-Crowdin-Project-ID: 434940\n"
-"X-Crowdin-Language: ar-BH\n"
-"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n"
-"X-Crowdin-File-ID: 54\n"
-
-#: documents/apps.py:10
-msgid "Documents"
-msgstr ""
-
-#: documents/models.py:32
-msgid "Any word"
-msgstr ""
-
-#: documents/models.py:33
-msgid "All words"
-msgstr ""
-
-#: documents/models.py:34
-msgid "Exact match"
-msgstr ""
-
-#: documents/models.py:35
-msgid "Regular expression"
-msgstr ""
-
-#: documents/models.py:36
-msgid "Fuzzy word"
-msgstr ""
-
-#: documents/models.py:37
-msgid "Automatic"
-msgstr ""
-
-#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25
-#: paperless_mail/models.py:117
-msgid "name"
-msgstr ""
-
-#: documents/models.py:45
-msgid "match"
-msgstr ""
-
-#: documents/models.py:49
-msgid "matching algorithm"
-msgstr ""
-
-#: documents/models.py:55
-msgid "is insensitive"
-msgstr ""
-
-#: documents/models.py:74 documents/models.py:120
-msgid "correspondent"
-msgstr ""
-
-#: documents/models.py:75
-msgid "correspondents"
-msgstr ""
-
-#: documents/models.py:81
-msgid "color"
-msgstr ""
-
-#: documents/models.py:87
-msgid "is inbox tag"
-msgstr ""
-
-#: documents/models.py:89
-msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
-msgstr ""
-
-#: documents/models.py:94
-msgid "tag"
-msgstr ""
-
-#: documents/models.py:95 documents/models.py:151
-msgid "tags"
-msgstr ""
-
-#: documents/models.py:101 documents/models.py:133
-msgid "document type"
-msgstr ""
-
-#: documents/models.py:102
-msgid "document types"
-msgstr ""
-
-#: documents/models.py:110
-msgid "Unencrypted"
-msgstr ""
-
-#: documents/models.py:111
-msgid "Encrypted with GNU Privacy Guard"
-msgstr ""
-
-#: documents/models.py:124
-msgid "title"
-msgstr ""
-
-#: documents/models.py:137
-msgid "content"
-msgstr ""
-
-#: documents/models.py:139
-msgid "The raw, text-only data of the document. This field is primarily used for searching."
-msgstr ""
-
-#: documents/models.py:144
-msgid "mime type"
-msgstr ""
-
-#: documents/models.py:155
-msgid "checksum"
-msgstr ""
-
-#: documents/models.py:159
-msgid "The checksum of the original document."
-msgstr ""
-
-#: documents/models.py:163
-msgid "archive checksum"
-msgstr ""
-
-#: documents/models.py:168
-msgid "The checksum of the archived document."
-msgstr ""
-
-#: documents/models.py:172 documents/models.py:328
-msgid "created"
-msgstr ""
-
-#: documents/models.py:176
-msgid "modified"
-msgstr ""
-
-#: documents/models.py:180
-msgid "storage type"
-msgstr ""
-
-#: documents/models.py:188
-msgid "added"
-msgstr ""
-
-#: documents/models.py:192
-msgid "filename"
-msgstr ""
-
-#: documents/models.py:198
-msgid "Current filename in storage"
-msgstr ""
-
-#: documents/models.py:202
-msgid "archive filename"
-msgstr ""
-
-#: documents/models.py:208
-msgid "Current archive filename in storage"
-msgstr ""
-
-#: documents/models.py:212
-msgid "archive serial number"
-msgstr ""
-
-#: documents/models.py:217
-msgid "The position of this document in your physical document archive."
-msgstr ""
-
-#: documents/models.py:223
-msgid "document"
-msgstr ""
-
-#: documents/models.py:224
-msgid "documents"
-msgstr ""
-
-#: documents/models.py:311
-msgid "debug"
-msgstr ""
-
-#: documents/models.py:312
-msgid "information"
-msgstr ""
-
-#: documents/models.py:313
-msgid "warning"
-msgstr ""
-
-#: documents/models.py:314
-msgid "error"
-msgstr ""
-
-#: documents/models.py:315
-msgid "critical"
-msgstr ""
-
-#: documents/models.py:319
-msgid "group"
-msgstr ""
-
-#: documents/models.py:322
-msgid "message"
-msgstr ""
-
-#: documents/models.py:325
-msgid "level"
-msgstr ""
-
-#: documents/models.py:332
-msgid "log"
-msgstr ""
-
-#: documents/models.py:333
-msgid "logs"
-msgstr ""
-
-#: documents/models.py:344 documents/models.py:401
-msgid "saved view"
-msgstr ""
-
-#: documents/models.py:345
-msgid "saved views"
-msgstr ""
-
-#: documents/models.py:348
-msgid "user"
-msgstr ""
-
-#: documents/models.py:354
-msgid "show on dashboard"
-msgstr ""
-
-#: documents/models.py:357
-msgid "show in sidebar"
-msgstr ""
-
-#: documents/models.py:361
-msgid "sort field"
-msgstr ""
-
-#: documents/models.py:367
-msgid "sort reverse"
-msgstr ""
-
-#: documents/models.py:373
-msgid "title contains"
-msgstr ""
-
-#: documents/models.py:374
-msgid "content contains"
-msgstr ""
-
-#: documents/models.py:375
-msgid "ASN is"
-msgstr ""
-
-#: documents/models.py:376
-msgid "correspondent is"
-msgstr ""
-
-#: documents/models.py:377
-msgid "document type is"
-msgstr ""
-
-#: documents/models.py:378
-msgid "is in inbox"
-msgstr ""
-
-#: documents/models.py:379
-msgid "has tag"
-msgstr ""
-
-#: documents/models.py:380
-msgid "has any tag"
-msgstr ""
-
-#: documents/models.py:381
-msgid "created before"
-msgstr ""
-
-#: documents/models.py:382
-msgid "created after"
-msgstr ""
-
-#: documents/models.py:383
-msgid "created year is"
-msgstr ""
-
-#: documents/models.py:384
-msgid "created month is"
-msgstr ""
-
-#: documents/models.py:385
-msgid "created day is"
-msgstr ""
-
-#: documents/models.py:386
-msgid "added before"
-msgstr ""
-
-#: documents/models.py:387
-msgid "added after"
-msgstr ""
-
-#: documents/models.py:388
-msgid "modified before"
-msgstr ""
-
-#: documents/models.py:389
-msgid "modified after"
-msgstr ""
-
-#: documents/models.py:390
-msgid "does not have tag"
-msgstr ""
-
-#: documents/models.py:391
-msgid "does not have ASN"
-msgstr ""
-
-#: documents/models.py:392
-msgid "title or content contains"
-msgstr ""
-
-#: documents/models.py:393
-msgid "fulltext query"
-msgstr ""
-
-#: documents/models.py:394
-msgid "more like this"
-msgstr ""
-
-#: documents/models.py:405
-msgid "rule type"
-msgstr ""
-
-#: documents/models.py:409
-msgid "value"
-msgstr ""
-
-#: documents/models.py:415
-msgid "filter rule"
-msgstr ""
-
-#: documents/models.py:416
-msgid "filter rules"
-msgstr ""
-
-#: documents/serialisers.py:53
-#, python-format
-msgid "Invalid regular expression: %(error)s"
-msgstr ""
-
-#: documents/serialisers.py:177
-msgid "Invalid color."
-msgstr ""
-
-#: documents/serialisers.py:451
-#, python-format
-msgid "File type %(type)s not supported"
-msgstr ""
-
-#: documents/templates/index.html:22
-msgid "Paperless-ng is loading..."
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:14
-msgid "Paperless-ng signed out"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:45
-msgid "You have been successfully logged out. Bye!"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:46
-msgid "Sign in again"
-msgstr ""
-
-#: documents/templates/registration/login.html:15
-msgid "Paperless-ng sign in"
-msgstr ""
-
-#: documents/templates/registration/login.html:47
-msgid "Please sign in."
-msgstr ""
-
-#: documents/templates/registration/login.html:50
-msgid "Your username and password didn't match. Please try again."
-msgstr ""
-
-#: documents/templates/registration/login.html:53
-msgid "Username"
-msgstr ""
-
-#: documents/templates/registration/login.html:54
-msgid "Password"
-msgstr ""
-
-#: documents/templates/registration/login.html:59
-msgid "Sign in"
-msgstr ""
-
-#: paperless/settings.py:303
-msgid "English (US)"
-msgstr ""
-
-#: paperless/settings.py:304
-msgid "English (GB)"
-msgstr ""
-
-#: paperless/settings.py:305
-msgid "German"
-msgstr ""
-
-#: paperless/settings.py:306
-msgid "Dutch"
-msgstr ""
-
-#: paperless/settings.py:307
-msgid "French"
-msgstr ""
-
-#: paperless/settings.py:308
-msgid "Portuguese (Brazil)"
-msgstr ""
-
-#: paperless/settings.py:309
-msgid "Portuguese"
-msgstr ""
-
-#: paperless/settings.py:310
-msgid "Italian"
-msgstr ""
-
-#: paperless/settings.py:311
-msgid "Romanian"
-msgstr ""
-
-#: paperless/settings.py:312
-msgid "Russian"
-msgstr ""
-
-#: paperless/settings.py:313
-msgid "Spanish"
-msgstr ""
-
-#: paperless/settings.py:314
-msgid "Polish"
-msgstr ""
-
-#: paperless/settings.py:315
-msgid "Swedish"
-msgstr ""
-
-#: paperless/urls.py:120
-msgid "Paperless-ng administration"
-msgstr ""
-
-#: paperless_mail/admin.py:15
-msgid "Authentication"
-msgstr ""
-
-#: paperless_mail/admin.py:18
-msgid "Advanced settings"
-msgstr ""
-
-#: paperless_mail/admin.py:37
-msgid "Filter"
-msgstr ""
-
-#: paperless_mail/admin.py:39
-msgid "Paperless will only process mails that match ALL of the filters given below."
-msgstr ""
-
-#: paperless_mail/admin.py:49
-msgid "Actions"
-msgstr ""
-
-#: paperless_mail/admin.py:51
-msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched."
-msgstr ""
-
-#: paperless_mail/admin.py:58
-msgid "Metadata"
-msgstr ""
-
-#: paperless_mail/admin.py:60
-msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined."
-msgstr ""
-
-#: paperless_mail/apps.py:9
-msgid "Paperless mail"
-msgstr ""
-
-#: paperless_mail/models.py:11
-msgid "mail account"
-msgstr ""
-
-#: paperless_mail/models.py:12
-msgid "mail accounts"
-msgstr ""
-
-#: paperless_mail/models.py:19
-msgid "No encryption"
-msgstr ""
-
-#: paperless_mail/models.py:20
-msgid "Use SSL"
-msgstr ""
-
-#: paperless_mail/models.py:21
-msgid "Use STARTTLS"
-msgstr ""
-
-#: paperless_mail/models.py:29
-msgid "IMAP server"
-msgstr ""
-
-#: paperless_mail/models.py:33
-msgid "IMAP port"
-msgstr ""
-
-#: paperless_mail/models.py:36
-msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections."
-msgstr ""
-
-#: paperless_mail/models.py:40
-msgid "IMAP security"
-msgstr ""
-
-#: paperless_mail/models.py:46
-msgid "username"
-msgstr ""
-
-#: paperless_mail/models.py:50
-msgid "password"
-msgstr ""
-
-#: paperless_mail/models.py:54
-msgid "character set"
-msgstr ""
-
-#: paperless_mail/models.py:57
-msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'."
-msgstr ""
-
-#: paperless_mail/models.py:68
-msgid "mail rule"
-msgstr ""
-
-#: paperless_mail/models.py:69
-msgid "mail rules"
-msgstr ""
-
-#: paperless_mail/models.py:75
-msgid "Only process attachments."
-msgstr ""
-
-#: paperless_mail/models.py:76
-msgid "Process all files, including 'inline' attachments."
-msgstr ""
-
-#: paperless_mail/models.py:86
-msgid "Mark as read, don't process read mails"
-msgstr ""
-
-#: paperless_mail/models.py:87
-msgid "Flag the mail, don't process flagged mails"
-msgstr ""
-
-#: paperless_mail/models.py:88
-msgid "Move to specified folder"
-msgstr ""
-
-#: paperless_mail/models.py:89
-msgid "Delete"
-msgstr ""
-
-#: paperless_mail/models.py:96
-msgid "Use subject as title"
-msgstr ""
-
-#: paperless_mail/models.py:97
-msgid "Use attachment filename as title"
-msgstr ""
-
-#: paperless_mail/models.py:107
-msgid "Do not assign a correspondent"
-msgstr ""
-
-#: paperless_mail/models.py:109
-msgid "Use mail address"
-msgstr ""
-
-#: paperless_mail/models.py:111
-msgid "Use name (or mail address if not available)"
-msgstr ""
-
-#: paperless_mail/models.py:113
-msgid "Use correspondent selected below"
-msgstr ""
-
-#: paperless_mail/models.py:121
-msgid "order"
-msgstr ""
-
-#: paperless_mail/models.py:128
-msgid "account"
-msgstr ""
-
-#: paperless_mail/models.py:132
-msgid "folder"
-msgstr ""
-
-#: paperless_mail/models.py:134
-msgid "Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:138
-msgid "filter from"
-msgstr ""
-
-#: paperless_mail/models.py:141
-msgid "filter subject"
-msgstr ""
-
-#: paperless_mail/models.py:144
-msgid "filter body"
-msgstr ""
-
-#: paperless_mail/models.py:148
-msgid "filter attachment filename"
-msgstr ""
-
-#: paperless_mail/models.py:150
-msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive."
-msgstr ""
-
-#: paperless_mail/models.py:156
-msgid "maximum age"
-msgstr ""
-
-#: paperless_mail/models.py:158
-msgid "Specified in days."
-msgstr ""
-
-#: paperless_mail/models.py:161
-msgid "attachment type"
-msgstr ""
-
-#: paperless_mail/models.py:164
-msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter."
-msgstr ""
-
-#: paperless_mail/models.py:169
-msgid "action"
-msgstr ""
-
-#: paperless_mail/models.py:175
-msgid "action parameter"
-msgstr ""
-
-#: paperless_mail/models.py:177
-msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:184
-msgid "assign title from"
-msgstr ""
-
-#: paperless_mail/models.py:194
-msgid "assign this tag"
-msgstr ""
-
-#: paperless_mail/models.py:202
-msgid "assign this document type"
-msgstr ""
-
-#: paperless_mail/models.py:206
-msgid "assign correspondent from"
-msgstr ""
-
-#: paperless_mail/models.py:216
-msgid "assign this correspondent"
-msgstr ""
-
diff --git a/src/locale/ar_EG/LC_MESSAGES/django.po b/src/locale/ar_EG/LC_MESSAGES/django.po
deleted file mode 100644
index cef7ec06f..000000000
--- a/src/locale/ar_EG/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,698 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: paperless-ng\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-05-16 09:38+0000\n"
-"PO-Revision-Date: 2021-11-23 18:07\n"
-"Last-Translator: \n"
-"Language-Team: Arabic, Egypt\n"
-"Language: ar_EG\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
-"X-Crowdin-Project: paperless-ng\n"
-"X-Crowdin-Project-ID: 434940\n"
-"X-Crowdin-Language: ar-EG\n"
-"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n"
-"X-Crowdin-File-ID: 54\n"
-
-#: documents/apps.py:10
-msgid "Documents"
-msgstr ""
-
-#: documents/models.py:32
-msgid "Any word"
-msgstr ""
-
-#: documents/models.py:33
-msgid "All words"
-msgstr ""
-
-#: documents/models.py:34
-msgid "Exact match"
-msgstr ""
-
-#: documents/models.py:35
-msgid "Regular expression"
-msgstr ""
-
-#: documents/models.py:36
-msgid "Fuzzy word"
-msgstr ""
-
-#: documents/models.py:37
-msgid "Automatic"
-msgstr ""
-
-#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25
-#: paperless_mail/models.py:117
-msgid "name"
-msgstr ""
-
-#: documents/models.py:45
-msgid "match"
-msgstr ""
-
-#: documents/models.py:49
-msgid "matching algorithm"
-msgstr ""
-
-#: documents/models.py:55
-msgid "is insensitive"
-msgstr ""
-
-#: documents/models.py:74 documents/models.py:120
-msgid "correspondent"
-msgstr ""
-
-#: documents/models.py:75
-msgid "correspondents"
-msgstr ""
-
-#: documents/models.py:81
-msgid "color"
-msgstr ""
-
-#: documents/models.py:87
-msgid "is inbox tag"
-msgstr ""
-
-#: documents/models.py:89
-msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
-msgstr ""
-
-#: documents/models.py:94
-msgid "tag"
-msgstr ""
-
-#: documents/models.py:95 documents/models.py:151
-msgid "tags"
-msgstr ""
-
-#: documents/models.py:101 documents/models.py:133
-msgid "document type"
-msgstr ""
-
-#: documents/models.py:102
-msgid "document types"
-msgstr ""
-
-#: documents/models.py:110
-msgid "Unencrypted"
-msgstr ""
-
-#: documents/models.py:111
-msgid "Encrypted with GNU Privacy Guard"
-msgstr ""
-
-#: documents/models.py:124
-msgid "title"
-msgstr ""
-
-#: documents/models.py:137
-msgid "content"
-msgstr ""
-
-#: documents/models.py:139
-msgid "The raw, text-only data of the document. This field is primarily used for searching."
-msgstr ""
-
-#: documents/models.py:144
-msgid "mime type"
-msgstr ""
-
-#: documents/models.py:155
-msgid "checksum"
-msgstr ""
-
-#: documents/models.py:159
-msgid "The checksum of the original document."
-msgstr ""
-
-#: documents/models.py:163
-msgid "archive checksum"
-msgstr ""
-
-#: documents/models.py:168
-msgid "The checksum of the archived document."
-msgstr ""
-
-#: documents/models.py:172 documents/models.py:328
-msgid "created"
-msgstr ""
-
-#: documents/models.py:176
-msgid "modified"
-msgstr ""
-
-#: documents/models.py:180
-msgid "storage type"
-msgstr ""
-
-#: documents/models.py:188
-msgid "added"
-msgstr ""
-
-#: documents/models.py:192
-msgid "filename"
-msgstr ""
-
-#: documents/models.py:198
-msgid "Current filename in storage"
-msgstr ""
-
-#: documents/models.py:202
-msgid "archive filename"
-msgstr ""
-
-#: documents/models.py:208
-msgid "Current archive filename in storage"
-msgstr ""
-
-#: documents/models.py:212
-msgid "archive serial number"
-msgstr ""
-
-#: documents/models.py:217
-msgid "The position of this document in your physical document archive."
-msgstr ""
-
-#: documents/models.py:223
-msgid "document"
-msgstr ""
-
-#: documents/models.py:224
-msgid "documents"
-msgstr ""
-
-#: documents/models.py:311
-msgid "debug"
-msgstr ""
-
-#: documents/models.py:312
-msgid "information"
-msgstr ""
-
-#: documents/models.py:313
-msgid "warning"
-msgstr ""
-
-#: documents/models.py:314
-msgid "error"
-msgstr ""
-
-#: documents/models.py:315
-msgid "critical"
-msgstr ""
-
-#: documents/models.py:319
-msgid "group"
-msgstr ""
-
-#: documents/models.py:322
-msgid "message"
-msgstr ""
-
-#: documents/models.py:325
-msgid "level"
-msgstr ""
-
-#: documents/models.py:332
-msgid "log"
-msgstr ""
-
-#: documents/models.py:333
-msgid "logs"
-msgstr ""
-
-#: documents/models.py:344 documents/models.py:401
-msgid "saved view"
-msgstr ""
-
-#: documents/models.py:345
-msgid "saved views"
-msgstr ""
-
-#: documents/models.py:348
-msgid "user"
-msgstr ""
-
-#: documents/models.py:354
-msgid "show on dashboard"
-msgstr ""
-
-#: documents/models.py:357
-msgid "show in sidebar"
-msgstr ""
-
-#: documents/models.py:361
-msgid "sort field"
-msgstr ""
-
-#: documents/models.py:367
-msgid "sort reverse"
-msgstr ""
-
-#: documents/models.py:373
-msgid "title contains"
-msgstr ""
-
-#: documents/models.py:374
-msgid "content contains"
-msgstr ""
-
-#: documents/models.py:375
-msgid "ASN is"
-msgstr ""
-
-#: documents/models.py:376
-msgid "correspondent is"
-msgstr ""
-
-#: documents/models.py:377
-msgid "document type is"
-msgstr ""
-
-#: documents/models.py:378
-msgid "is in inbox"
-msgstr ""
-
-#: documents/models.py:379
-msgid "has tag"
-msgstr ""
-
-#: documents/models.py:380
-msgid "has any tag"
-msgstr ""
-
-#: documents/models.py:381
-msgid "created before"
-msgstr ""
-
-#: documents/models.py:382
-msgid "created after"
-msgstr ""
-
-#: documents/models.py:383
-msgid "created year is"
-msgstr ""
-
-#: documents/models.py:384
-msgid "created month is"
-msgstr ""
-
-#: documents/models.py:385
-msgid "created day is"
-msgstr ""
-
-#: documents/models.py:386
-msgid "added before"
-msgstr ""
-
-#: documents/models.py:387
-msgid "added after"
-msgstr ""
-
-#: documents/models.py:388
-msgid "modified before"
-msgstr ""
-
-#: documents/models.py:389
-msgid "modified after"
-msgstr ""
-
-#: documents/models.py:390
-msgid "does not have tag"
-msgstr ""
-
-#: documents/models.py:391
-msgid "does not have ASN"
-msgstr ""
-
-#: documents/models.py:392
-msgid "title or content contains"
-msgstr ""
-
-#: documents/models.py:393
-msgid "fulltext query"
-msgstr ""
-
-#: documents/models.py:394
-msgid "more like this"
-msgstr ""
-
-#: documents/models.py:405
-msgid "rule type"
-msgstr ""
-
-#: documents/models.py:409
-msgid "value"
-msgstr ""
-
-#: documents/models.py:415
-msgid "filter rule"
-msgstr ""
-
-#: documents/models.py:416
-msgid "filter rules"
-msgstr ""
-
-#: documents/serialisers.py:53
-#, python-format
-msgid "Invalid regular expression: %(error)s"
-msgstr ""
-
-#: documents/serialisers.py:177
-msgid "Invalid color."
-msgstr ""
-
-#: documents/serialisers.py:451
-#, python-format
-msgid "File type %(type)s not supported"
-msgstr ""
-
-#: documents/templates/index.html:22
-msgid "Paperless-ng is loading..."
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:14
-msgid "Paperless-ng signed out"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:45
-msgid "You have been successfully logged out. Bye!"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:46
-msgid "Sign in again"
-msgstr ""
-
-#: documents/templates/registration/login.html:15
-msgid "Paperless-ng sign in"
-msgstr ""
-
-#: documents/templates/registration/login.html:47
-msgid "Please sign in."
-msgstr ""
-
-#: documents/templates/registration/login.html:50
-msgid "Your username and password didn't match. Please try again."
-msgstr ""
-
-#: documents/templates/registration/login.html:53
-msgid "Username"
-msgstr ""
-
-#: documents/templates/registration/login.html:54
-msgid "Password"
-msgstr ""
-
-#: documents/templates/registration/login.html:59
-msgid "Sign in"
-msgstr ""
-
-#: paperless/settings.py:303
-msgid "English (US)"
-msgstr ""
-
-#: paperless/settings.py:304
-msgid "English (GB)"
-msgstr ""
-
-#: paperless/settings.py:305
-msgid "German"
-msgstr ""
-
-#: paperless/settings.py:306
-msgid "Dutch"
-msgstr ""
-
-#: paperless/settings.py:307
-msgid "French"
-msgstr ""
-
-#: paperless/settings.py:308
-msgid "Portuguese (Brazil)"
-msgstr ""
-
-#: paperless/settings.py:309
-msgid "Portuguese"
-msgstr ""
-
-#: paperless/settings.py:310
-msgid "Italian"
-msgstr ""
-
-#: paperless/settings.py:311
-msgid "Romanian"
-msgstr ""
-
-#: paperless/settings.py:312
-msgid "Russian"
-msgstr ""
-
-#: paperless/settings.py:313
-msgid "Spanish"
-msgstr ""
-
-#: paperless/settings.py:314
-msgid "Polish"
-msgstr ""
-
-#: paperless/settings.py:315
-msgid "Swedish"
-msgstr ""
-
-#: paperless/urls.py:120
-msgid "Paperless-ng administration"
-msgstr ""
-
-#: paperless_mail/admin.py:15
-msgid "Authentication"
-msgstr ""
-
-#: paperless_mail/admin.py:18
-msgid "Advanced settings"
-msgstr ""
-
-#: paperless_mail/admin.py:37
-msgid "Filter"
-msgstr ""
-
-#: paperless_mail/admin.py:39
-msgid "Paperless will only process mails that match ALL of the filters given below."
-msgstr ""
-
-#: paperless_mail/admin.py:49
-msgid "Actions"
-msgstr ""
-
-#: paperless_mail/admin.py:51
-msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched."
-msgstr ""
-
-#: paperless_mail/admin.py:58
-msgid "Metadata"
-msgstr ""
-
-#: paperless_mail/admin.py:60
-msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined."
-msgstr ""
-
-#: paperless_mail/apps.py:9
-msgid "Paperless mail"
-msgstr ""
-
-#: paperless_mail/models.py:11
-msgid "mail account"
-msgstr ""
-
-#: paperless_mail/models.py:12
-msgid "mail accounts"
-msgstr ""
-
-#: paperless_mail/models.py:19
-msgid "No encryption"
-msgstr ""
-
-#: paperless_mail/models.py:20
-msgid "Use SSL"
-msgstr ""
-
-#: paperless_mail/models.py:21
-msgid "Use STARTTLS"
-msgstr ""
-
-#: paperless_mail/models.py:29
-msgid "IMAP server"
-msgstr ""
-
-#: paperless_mail/models.py:33
-msgid "IMAP port"
-msgstr ""
-
-#: paperless_mail/models.py:36
-msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections."
-msgstr ""
-
-#: paperless_mail/models.py:40
-msgid "IMAP security"
-msgstr ""
-
-#: paperless_mail/models.py:46
-msgid "username"
-msgstr ""
-
-#: paperless_mail/models.py:50
-msgid "password"
-msgstr ""
-
-#: paperless_mail/models.py:54
-msgid "character set"
-msgstr ""
-
-#: paperless_mail/models.py:57
-msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'."
-msgstr ""
-
-#: paperless_mail/models.py:68
-msgid "mail rule"
-msgstr ""
-
-#: paperless_mail/models.py:69
-msgid "mail rules"
-msgstr ""
-
-#: paperless_mail/models.py:75
-msgid "Only process attachments."
-msgstr ""
-
-#: paperless_mail/models.py:76
-msgid "Process all files, including 'inline' attachments."
-msgstr ""
-
-#: paperless_mail/models.py:86
-msgid "Mark as read, don't process read mails"
-msgstr ""
-
-#: paperless_mail/models.py:87
-msgid "Flag the mail, don't process flagged mails"
-msgstr ""
-
-#: paperless_mail/models.py:88
-msgid "Move to specified folder"
-msgstr ""
-
-#: paperless_mail/models.py:89
-msgid "Delete"
-msgstr ""
-
-#: paperless_mail/models.py:96
-msgid "Use subject as title"
-msgstr ""
-
-#: paperless_mail/models.py:97
-msgid "Use attachment filename as title"
-msgstr ""
-
-#: paperless_mail/models.py:107
-msgid "Do not assign a correspondent"
-msgstr ""
-
-#: paperless_mail/models.py:109
-msgid "Use mail address"
-msgstr ""
-
-#: paperless_mail/models.py:111
-msgid "Use name (or mail address if not available)"
-msgstr ""
-
-#: paperless_mail/models.py:113
-msgid "Use correspondent selected below"
-msgstr ""
-
-#: paperless_mail/models.py:121
-msgid "order"
-msgstr ""
-
-#: paperless_mail/models.py:128
-msgid "account"
-msgstr ""
-
-#: paperless_mail/models.py:132
-msgid "folder"
-msgstr ""
-
-#: paperless_mail/models.py:134
-msgid "Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:138
-msgid "filter from"
-msgstr ""
-
-#: paperless_mail/models.py:141
-msgid "filter subject"
-msgstr ""
-
-#: paperless_mail/models.py:144
-msgid "filter body"
-msgstr ""
-
-#: paperless_mail/models.py:148
-msgid "filter attachment filename"
-msgstr ""
-
-#: paperless_mail/models.py:150
-msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive."
-msgstr ""
-
-#: paperless_mail/models.py:156
-msgid "maximum age"
-msgstr ""
-
-#: paperless_mail/models.py:158
-msgid "Specified in days."
-msgstr ""
-
-#: paperless_mail/models.py:161
-msgid "attachment type"
-msgstr ""
-
-#: paperless_mail/models.py:164
-msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter."
-msgstr ""
-
-#: paperless_mail/models.py:169
-msgid "action"
-msgstr ""
-
-#: paperless_mail/models.py:175
-msgid "action parameter"
-msgstr ""
-
-#: paperless_mail/models.py:177
-msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:184
-msgid "assign title from"
-msgstr ""
-
-#: paperless_mail/models.py:194
-msgid "assign this tag"
-msgstr ""
-
-#: paperless_mail/models.py:202
-msgid "assign this document type"
-msgstr ""
-
-#: paperless_mail/models.py:206
-msgid "assign correspondent from"
-msgstr ""
-
-#: paperless_mail/models.py:216
-msgid "assign this correspondent"
-msgstr ""
-
diff --git a/src/locale/ar_YE/LC_MESSAGES/django.po b/src/locale/ar_YE/LC_MESSAGES/django.po
deleted file mode 100644
index 397544884..000000000
--- a/src/locale/ar_YE/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,698 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: paperless-ng\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-05-16 09:38+0000\n"
-"PO-Revision-Date: 2021-11-23 18:07\n"
-"Last-Translator: \n"
-"Language-Team: Arabic, Yemen\n"
-"Language: ar_YE\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
-"X-Crowdin-Project: paperless-ng\n"
-"X-Crowdin-Project-ID: 434940\n"
-"X-Crowdin-Language: ar-YE\n"
-"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n"
-"X-Crowdin-File-ID: 54\n"
-
-#: documents/apps.py:10
-msgid "Documents"
-msgstr ""
-
-#: documents/models.py:32
-msgid "Any word"
-msgstr ""
-
-#: documents/models.py:33
-msgid "All words"
-msgstr ""
-
-#: documents/models.py:34
-msgid "Exact match"
-msgstr ""
-
-#: documents/models.py:35
-msgid "Regular expression"
-msgstr ""
-
-#: documents/models.py:36
-msgid "Fuzzy word"
-msgstr ""
-
-#: documents/models.py:37
-msgid "Automatic"
-msgstr ""
-
-#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25
-#: paperless_mail/models.py:117
-msgid "name"
-msgstr ""
-
-#: documents/models.py:45
-msgid "match"
-msgstr ""
-
-#: documents/models.py:49
-msgid "matching algorithm"
-msgstr ""
-
-#: documents/models.py:55
-msgid "is insensitive"
-msgstr ""
-
-#: documents/models.py:74 documents/models.py:120
-msgid "correspondent"
-msgstr ""
-
-#: documents/models.py:75
-msgid "correspondents"
-msgstr ""
-
-#: documents/models.py:81
-msgid "color"
-msgstr ""
-
-#: documents/models.py:87
-msgid "is inbox tag"
-msgstr ""
-
-#: documents/models.py:89
-msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
-msgstr ""
-
-#: documents/models.py:94
-msgid "tag"
-msgstr ""
-
-#: documents/models.py:95 documents/models.py:151
-msgid "tags"
-msgstr ""
-
-#: documents/models.py:101 documents/models.py:133
-msgid "document type"
-msgstr ""
-
-#: documents/models.py:102
-msgid "document types"
-msgstr ""
-
-#: documents/models.py:110
-msgid "Unencrypted"
-msgstr ""
-
-#: documents/models.py:111
-msgid "Encrypted with GNU Privacy Guard"
-msgstr ""
-
-#: documents/models.py:124
-msgid "title"
-msgstr ""
-
-#: documents/models.py:137
-msgid "content"
-msgstr ""
-
-#: documents/models.py:139
-msgid "The raw, text-only data of the document. This field is primarily used for searching."
-msgstr ""
-
-#: documents/models.py:144
-msgid "mime type"
-msgstr ""
-
-#: documents/models.py:155
-msgid "checksum"
-msgstr ""
-
-#: documents/models.py:159
-msgid "The checksum of the original document."
-msgstr ""
-
-#: documents/models.py:163
-msgid "archive checksum"
-msgstr ""
-
-#: documents/models.py:168
-msgid "The checksum of the archived document."
-msgstr ""
-
-#: documents/models.py:172 documents/models.py:328
-msgid "created"
-msgstr ""
-
-#: documents/models.py:176
-msgid "modified"
-msgstr ""
-
-#: documents/models.py:180
-msgid "storage type"
-msgstr ""
-
-#: documents/models.py:188
-msgid "added"
-msgstr ""
-
-#: documents/models.py:192
-msgid "filename"
-msgstr ""
-
-#: documents/models.py:198
-msgid "Current filename in storage"
-msgstr ""
-
-#: documents/models.py:202
-msgid "archive filename"
-msgstr ""
-
-#: documents/models.py:208
-msgid "Current archive filename in storage"
-msgstr ""
-
-#: documents/models.py:212
-msgid "archive serial number"
-msgstr ""
-
-#: documents/models.py:217
-msgid "The position of this document in your physical document archive."
-msgstr ""
-
-#: documents/models.py:223
-msgid "document"
-msgstr ""
-
-#: documents/models.py:224
-msgid "documents"
-msgstr ""
-
-#: documents/models.py:311
-msgid "debug"
-msgstr ""
-
-#: documents/models.py:312
-msgid "information"
-msgstr ""
-
-#: documents/models.py:313
-msgid "warning"
-msgstr ""
-
-#: documents/models.py:314
-msgid "error"
-msgstr ""
-
-#: documents/models.py:315
-msgid "critical"
-msgstr ""
-
-#: documents/models.py:319
-msgid "group"
-msgstr ""
-
-#: documents/models.py:322
-msgid "message"
-msgstr ""
-
-#: documents/models.py:325
-msgid "level"
-msgstr ""
-
-#: documents/models.py:332
-msgid "log"
-msgstr ""
-
-#: documents/models.py:333
-msgid "logs"
-msgstr ""
-
-#: documents/models.py:344 documents/models.py:401
-msgid "saved view"
-msgstr ""
-
-#: documents/models.py:345
-msgid "saved views"
-msgstr ""
-
-#: documents/models.py:348
-msgid "user"
-msgstr ""
-
-#: documents/models.py:354
-msgid "show on dashboard"
-msgstr ""
-
-#: documents/models.py:357
-msgid "show in sidebar"
-msgstr ""
-
-#: documents/models.py:361
-msgid "sort field"
-msgstr ""
-
-#: documents/models.py:367
-msgid "sort reverse"
-msgstr ""
-
-#: documents/models.py:373
-msgid "title contains"
-msgstr ""
-
-#: documents/models.py:374
-msgid "content contains"
-msgstr ""
-
-#: documents/models.py:375
-msgid "ASN is"
-msgstr ""
-
-#: documents/models.py:376
-msgid "correspondent is"
-msgstr ""
-
-#: documents/models.py:377
-msgid "document type is"
-msgstr ""
-
-#: documents/models.py:378
-msgid "is in inbox"
-msgstr ""
-
-#: documents/models.py:379
-msgid "has tag"
-msgstr ""
-
-#: documents/models.py:380
-msgid "has any tag"
-msgstr ""
-
-#: documents/models.py:381
-msgid "created before"
-msgstr ""
-
-#: documents/models.py:382
-msgid "created after"
-msgstr ""
-
-#: documents/models.py:383
-msgid "created year is"
-msgstr ""
-
-#: documents/models.py:384
-msgid "created month is"
-msgstr ""
-
-#: documents/models.py:385
-msgid "created day is"
-msgstr ""
-
-#: documents/models.py:386
-msgid "added before"
-msgstr ""
-
-#: documents/models.py:387
-msgid "added after"
-msgstr ""
-
-#: documents/models.py:388
-msgid "modified before"
-msgstr ""
-
-#: documents/models.py:389
-msgid "modified after"
-msgstr ""
-
-#: documents/models.py:390
-msgid "does not have tag"
-msgstr ""
-
-#: documents/models.py:391
-msgid "does not have ASN"
-msgstr ""
-
-#: documents/models.py:392
-msgid "title or content contains"
-msgstr ""
-
-#: documents/models.py:393
-msgid "fulltext query"
-msgstr ""
-
-#: documents/models.py:394
-msgid "more like this"
-msgstr ""
-
-#: documents/models.py:405
-msgid "rule type"
-msgstr ""
-
-#: documents/models.py:409
-msgid "value"
-msgstr ""
-
-#: documents/models.py:415
-msgid "filter rule"
-msgstr ""
-
-#: documents/models.py:416
-msgid "filter rules"
-msgstr ""
-
-#: documents/serialisers.py:53
-#, python-format
-msgid "Invalid regular expression: %(error)s"
-msgstr ""
-
-#: documents/serialisers.py:177
-msgid "Invalid color."
-msgstr ""
-
-#: documents/serialisers.py:451
-#, python-format
-msgid "File type %(type)s not supported"
-msgstr ""
-
-#: documents/templates/index.html:22
-msgid "Paperless-ng is loading..."
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:14
-msgid "Paperless-ng signed out"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:45
-msgid "You have been successfully logged out. Bye!"
-msgstr ""
-
-#: documents/templates/registration/logged_out.html:46
-msgid "Sign in again"
-msgstr ""
-
-#: documents/templates/registration/login.html:15
-msgid "Paperless-ng sign in"
-msgstr ""
-
-#: documents/templates/registration/login.html:47
-msgid "Please sign in."
-msgstr ""
-
-#: documents/templates/registration/login.html:50
-msgid "Your username and password didn't match. Please try again."
-msgstr ""
-
-#: documents/templates/registration/login.html:53
-msgid "Username"
-msgstr ""
-
-#: documents/templates/registration/login.html:54
-msgid "Password"
-msgstr ""
-
-#: documents/templates/registration/login.html:59
-msgid "Sign in"
-msgstr ""
-
-#: paperless/settings.py:303
-msgid "English (US)"
-msgstr ""
-
-#: paperless/settings.py:304
-msgid "English (GB)"
-msgstr ""
-
-#: paperless/settings.py:305
-msgid "German"
-msgstr ""
-
-#: paperless/settings.py:306
-msgid "Dutch"
-msgstr ""
-
-#: paperless/settings.py:307
-msgid "French"
-msgstr ""
-
-#: paperless/settings.py:308
-msgid "Portuguese (Brazil)"
-msgstr ""
-
-#: paperless/settings.py:309
-msgid "Portuguese"
-msgstr ""
-
-#: paperless/settings.py:310
-msgid "Italian"
-msgstr ""
-
-#: paperless/settings.py:311
-msgid "Romanian"
-msgstr ""
-
-#: paperless/settings.py:312
-msgid "Russian"
-msgstr ""
-
-#: paperless/settings.py:313
-msgid "Spanish"
-msgstr ""
-
-#: paperless/settings.py:314
-msgid "Polish"
-msgstr ""
-
-#: paperless/settings.py:315
-msgid "Swedish"
-msgstr ""
-
-#: paperless/urls.py:120
-msgid "Paperless-ng administration"
-msgstr ""
-
-#: paperless_mail/admin.py:15
-msgid "Authentication"
-msgstr ""
-
-#: paperless_mail/admin.py:18
-msgid "Advanced settings"
-msgstr ""
-
-#: paperless_mail/admin.py:37
-msgid "Filter"
-msgstr ""
-
-#: paperless_mail/admin.py:39
-msgid "Paperless will only process mails that match ALL of the filters given below."
-msgstr ""
-
-#: paperless_mail/admin.py:49
-msgid "Actions"
-msgstr ""
-
-#: paperless_mail/admin.py:51
-msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched."
-msgstr ""
-
-#: paperless_mail/admin.py:58
-msgid "Metadata"
-msgstr ""
-
-#: paperless_mail/admin.py:60
-msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined."
-msgstr ""
-
-#: paperless_mail/apps.py:9
-msgid "Paperless mail"
-msgstr ""
-
-#: paperless_mail/models.py:11
-msgid "mail account"
-msgstr ""
-
-#: paperless_mail/models.py:12
-msgid "mail accounts"
-msgstr ""
-
-#: paperless_mail/models.py:19
-msgid "No encryption"
-msgstr ""
-
-#: paperless_mail/models.py:20
-msgid "Use SSL"
-msgstr ""
-
-#: paperless_mail/models.py:21
-msgid "Use STARTTLS"
-msgstr ""
-
-#: paperless_mail/models.py:29
-msgid "IMAP server"
-msgstr ""
-
-#: paperless_mail/models.py:33
-msgid "IMAP port"
-msgstr ""
-
-#: paperless_mail/models.py:36
-msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections."
-msgstr ""
-
-#: paperless_mail/models.py:40
-msgid "IMAP security"
-msgstr ""
-
-#: paperless_mail/models.py:46
-msgid "username"
-msgstr ""
-
-#: paperless_mail/models.py:50
-msgid "password"
-msgstr ""
-
-#: paperless_mail/models.py:54
-msgid "character set"
-msgstr ""
-
-#: paperless_mail/models.py:57
-msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'."
-msgstr ""
-
-#: paperless_mail/models.py:68
-msgid "mail rule"
-msgstr ""
-
-#: paperless_mail/models.py:69
-msgid "mail rules"
-msgstr ""
-
-#: paperless_mail/models.py:75
-msgid "Only process attachments."
-msgstr ""
-
-#: paperless_mail/models.py:76
-msgid "Process all files, including 'inline' attachments."
-msgstr ""
-
-#: paperless_mail/models.py:86
-msgid "Mark as read, don't process read mails"
-msgstr ""
-
-#: paperless_mail/models.py:87
-msgid "Flag the mail, don't process flagged mails"
-msgstr ""
-
-#: paperless_mail/models.py:88
-msgid "Move to specified folder"
-msgstr ""
-
-#: paperless_mail/models.py:89
-msgid "Delete"
-msgstr ""
-
-#: paperless_mail/models.py:96
-msgid "Use subject as title"
-msgstr ""
-
-#: paperless_mail/models.py:97
-msgid "Use attachment filename as title"
-msgstr ""
-
-#: paperless_mail/models.py:107
-msgid "Do not assign a correspondent"
-msgstr ""
-
-#: paperless_mail/models.py:109
-msgid "Use mail address"
-msgstr ""
-
-#: paperless_mail/models.py:111
-msgid "Use name (or mail address if not available)"
-msgstr ""
-
-#: paperless_mail/models.py:113
-msgid "Use correspondent selected below"
-msgstr ""
-
-#: paperless_mail/models.py:121
-msgid "order"
-msgstr ""
-
-#: paperless_mail/models.py:128
-msgid "account"
-msgstr ""
-
-#: paperless_mail/models.py:132
-msgid "folder"
-msgstr ""
-
-#: paperless_mail/models.py:134
-msgid "Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:138
-msgid "filter from"
-msgstr ""
-
-#: paperless_mail/models.py:141
-msgid "filter subject"
-msgstr ""
-
-#: paperless_mail/models.py:144
-msgid "filter body"
-msgstr ""
-
-#: paperless_mail/models.py:148
-msgid "filter attachment filename"
-msgstr ""
-
-#: paperless_mail/models.py:150
-msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive."
-msgstr ""
-
-#: paperless_mail/models.py:156
-msgid "maximum age"
-msgstr ""
-
-#: paperless_mail/models.py:158
-msgid "Specified in days."
-msgstr ""
-
-#: paperless_mail/models.py:161
-msgid "attachment type"
-msgstr ""
-
-#: paperless_mail/models.py:164
-msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter."
-msgstr ""
-
-#: paperless_mail/models.py:169
-msgid "action"
-msgstr ""
-
-#: paperless_mail/models.py:175
-msgid "action parameter"
-msgstr ""
-
-#: paperless_mail/models.py:177
-msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots."
-msgstr ""
-
-#: paperless_mail/models.py:184
-msgid "assign title from"
-msgstr ""
-
-#: paperless_mail/models.py:194
-msgid "assign this tag"
-msgstr ""
-
-#: paperless_mail/models.py:202
-msgid "assign this document type"
-msgstr ""
-
-#: paperless_mail/models.py:206
-msgid "assign correspondent from"
-msgstr ""
-
-#: paperless_mail/models.py:216
-msgid "assign this correspondent"
-msgstr ""
-
diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po
index 14d3591d2..2b12b7dfb 100644
--- a/src/locale/be_BY/LC_MESSAGES/django.po
+++ b/src/locale/be_BY/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-10-16 13:46\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Belarusian\n"
"Language: be_BY\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Дакументы"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Любое слова"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Усе словы"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Дакладнае супадзенне"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Рэгулярны выраз"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Невыразнае слова"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Аўтаматычна"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "назва"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "супадзенне"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "алгарытм супастаўлення"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "без уліку рэгістра"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "карэспандэнт"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "карэспандэнты"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "колер"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "гэта ўваходны тэг"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Пазначыць гэты тэг як тэг папкі \"Уваходныя\": Усе нядаўна спажытыя дакументы будуць пазначаны тэгамі \"Уваходныя\"."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "тэг"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "тэгі"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "тып дакумента"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "тыпы дакументаў"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "шлях"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "шлях захоўвання"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "шляхі захоўвання"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Незашыфраваны"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Зашыфравана з дапамогай GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "назва"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "змест"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Неапрацаваныя тэкставыя даныя дакумента. Гэта поле ў асноўным выкарыстоўваецца для пошуку."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "тып MIME"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "кантрольная сума"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Кантрольная сума зыходнага дакумента."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "кантрольная сума архіва"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Кантрольная сума архіўнага дакумента."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "створаны"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "мадыфікаваны"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "тып захоўвання"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "дададзена"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "імя файла"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Цяперашняе імя файла ў сховішчы"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "імя файла архіва"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Цяперашняе імя файла архіва ў сховішчы"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "парадкавы нумар архіва"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Пазіцыя гэтага дакумента ў вашым фізічным архіве дакументаў."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "дакумент"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "дакументы"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "адладка"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "інфармацыя"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "папярэджанне"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "памылка"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "крытычны"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "група"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "паведамленне"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "узровень"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "лог"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "логі"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "захаваны выгляд"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "захаваныя выгляды"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "карыстальнік"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "паказаць на панэлі"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "паказаць у бакавой панэлі"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "поле сартавання"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "сартаваць у адваротным парадку"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "назва змяшчае"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "змест змяшчае"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "карэспандэнт"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "тып дакумента"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "ва ўваходных"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "мае тэг"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "мае любы тэг"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "створана перад"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "створана пасля"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "год стварэння"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "месяц стварэння"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "дзень стварэння"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "даданы перад"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "даданы пасля"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "зменены перад"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "зменены пасля"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "не мае тэга"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "не мае ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "назва або змест смяшчае"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "поўнатэкставы запыт"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "больш падобнага"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "мае тэгі ў"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "тып правіла"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "значэнне"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "правіла фільтрацыі"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "правілы фільтрацыі"
-#: documents/models.py:521
-msgid "started"
-msgstr "пачата"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Няправільны рэгулярны выраз: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Няправільны колер."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Тып файла %(type)s не падтрымліваецца"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Выяўлена няправільная зменная."
@@ -444,87 +556,87 @@ msgstr "Пароль"
msgid "Sign in"
msgstr "Увайсці"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Англійская (ЗША)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Беларуская"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Чэшская"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Дацкая"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Нямецкая"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Англійская (Вялікабрытанія)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Іспанская"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Французская"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Італьянская"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Люксембургская"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Нідэрландская"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Польская"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Партугальская (Бразілія)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Партугальская"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Румынская"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Руская"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Славенская"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Сербская"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Шведская"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Турэцкая"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Кітайская спрошчаная"
diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po
index fc6dd3ede..2acdedcb5 100644
--- a/src/locale/cs_CZ/LC_MESSAGES/django.po
+++ b/src/locale/cs_CZ/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-10-18 20:06\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Language: cs_CZ\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Jakékoliv slovo"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Všechna slova"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Přesná shoda"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regulární výraz"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Fuzzy slovo"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatický"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "název"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "shoda"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritmus pro shodu"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "je ignorováno"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korespondenti"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "barva"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "tag přichozí"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Označí tento tag jako tag pro příchozí: Všechny nově zkonzumované dokumenty budou označeny tagem pro přichozí"
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "tagy"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "tagy"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "typ dokumentu"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "typy dokumentu"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "cesta"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "cesta k úložišti"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "cesta k úložišti"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Nešifrované"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrované pomocí GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titulek"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "obsah"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Nezpracovaná, pouze textová data dokumentu. Toto pole je používáno především pro vyhledávání."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime typ"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrolní součet"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrolní součet původního dokumentu"
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "kontrolní součet archivu"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrolní součet archivovaného dokumentu."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "vytvořeno"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "upraveno"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "typ úložiště"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "přidáno"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "název souboru"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Aktuální název souboru v úložišti"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "Název archivovaného souboru"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Aktuální název souboru archivu v úložišti"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "sériové číslo archivu"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Pozice dokumentu ve vašem archivu fyzických dokumentů"
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenty"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "ladění"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informace"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "varování"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "chyba"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritická"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "skupina"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "zpráva"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "úroveň"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "záznam"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "záznamy"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "uložený pohled"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "uložené pohledy"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "uživatel"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "zobrazit v dashboardu"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "zobrazit v postranním menu"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "pole na řazení"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "třídit opačně"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "titulek obsahuje"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "obsah obsahuje"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN je"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "korespondent je"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "typ dokumentu je"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "je v příchozích"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "má tag"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "má jakýkoliv tag"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "vytvořeno před"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "vytvořeno po"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "rok vytvoření je"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "měsíc vytvoření je"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "den vytvoření je"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "přidáno před"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "přidáno po"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "upraveno před"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "upraveno po"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "nemá tag"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "Nemá ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "Titulek nebo obsah obsahuje"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "Fulltextový dotaz"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "Podobné"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "má značky v"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "typ pravidla"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "hodnota"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtrovací pravidlo"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtrovací pravidla"
-#: documents/models.py:521
-msgid "started"
-msgstr "zahájeno"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Neplatný regulární výraz: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Neplatná barva."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Typ souboru %(type)s není podporován"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Zjištěna neplatná proměnná."
@@ -444,87 +556,87 @@ msgstr "Heslo"
msgid "Sign in"
msgstr "Přihlásit se"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Angličtina (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Běloruština"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Čeština"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dánština"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Němčina"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Angličtina (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Španělština"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francouzština"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italština"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Lucemburština"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Holandština"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polština"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugalština (Brazílie)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugalština"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumunština"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ruština"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovinština"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Srbština"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Švédština"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turečtina"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Čínština (zjednodušená)"
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index 2fd63c6f5..f7ccff0db 100644
--- a/src/locale/da_DK/LC_MESSAGES/django.po
+++ b/src/locale/da_DK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Language: da_DK\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Ethvert ord"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Alle ord"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Præcis match"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regulær udtryk"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Tilnærmet ord"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatisk"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "navn"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "match"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "matching algoritme"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "er usensitiv"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korrespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korrespondenter"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "farve"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "er indbakkeetiket"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Markerer denne etiket som en indbakkeetiket: Alle ny-bearbejdede dokumenter vil blive mærket med indbakkeetiketter."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etiket"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiketter"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "dokumenttype"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "dokumenttyper"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Ukrypteret"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Krypteret med GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "indhold"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Dokumentets rå tekstdata. Dette felt bruges primært til søgning."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "MIME-type"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrolsum"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrolsummen af det oprindelige dokument."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arkiv kontrolsum"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrolsummen af det arkiverede dokument."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "oprettet"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "ændret"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "lagringstype"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "tilføjet"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "filnavn"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nuværende filnavn lagret"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "arkiv filnavn"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nuværende arkivfilnavn lagret"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arkiv serienummer"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Placeringen af dette dokument i dit fysiske dokumentarkiv."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenter"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "fejlfinding"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "information"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "advarsel"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "fejl"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritisk"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "gruppe"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "besked"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "niveau"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "log"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logninger"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "gemt visning"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "gemte visninger"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "bruger"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "vis på betjeningspanel"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "vis i sidepanelet"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sortér felt"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "sortér omvendt"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "titel indeholder"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "indhold indeholder"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN er"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "korrespondent er"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "dokumenttype er"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "er i indbakke"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "har etiket"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "har en etiket"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "oprettet før"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "oprettet efter"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "oprettet år er"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "oprettet måned er"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "oprettet dag er"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "tilføjet før"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "tilføjet efter"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "ændret før"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "ændret efter"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "har ikke nogen etiket"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "har ikke ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "titel eller indhold indeholder"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "fuldtekst forespørgsel"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mere som dette"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "har etiketter i"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "regeltype"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "værdi"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtreringsregel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtreringsregler"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ugyldigt regulært udtryk: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ugyldig farve."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Filtype %(type)s understøttes ikke"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr ""
@@ -444,87 +556,87 @@ msgstr "Adgangskode"
msgid "Sign in"
msgstr "Log ind"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engelsk (USA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr ""
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tjekkisk"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dansk"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Tysk"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engelsk (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spansk"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Fransk"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiensk"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburgsk"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Hollandsk"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polsk"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasilien)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugisisk"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Romansk"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russisk"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr ""
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr ""
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Svensk"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr ""
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr ""
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index e61bcb564..446ff9672 100644
--- a/src/locale/de_DE/LC_MESSAGES/django.po
+++ b/src/locale/de_DE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-09-04 11:44\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-26 20:28\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Irgendein Wort"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Alle Wörter"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Exakte Übereinstimmung"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regulärer Ausdruck"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Ungenaues Wort"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatisch"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "Name"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "Zuweisungsmuster"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "Zuweisungsalgorithmus"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "Groß-/Kleinschreibung irrelevant"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "Korrespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "Korrespondenten"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "Farbe"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "Posteingangs-Tag"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Markiert das Tag als Posteingangs-Tag. Neue Dokumente werden immer mit diesem Tag versehen."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "Tag"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "Tags"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "Dokumenttyp"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "Dokumenttypen"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "Pfad"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "Speicherpfad"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "Speicherpfade"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Nicht verschlüsselt"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Durch GNU Privacy Guard verschlüsselt"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "Titel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "Inhalt"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Der Inhalt des Dokuments in Textform. Dieses Feld wird primär für die Suche verwendet."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "MIME-Typ"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "Prüfsumme"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Die Prüfsumme des originalen Dokuments."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "Archiv-Prüfsumme"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Die Prüfsumme des archivierten Dokuments."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "Erstellt"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "Geändert"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "Speichertyp"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "Hinzugefügt"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "Dateiname"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Aktueller Dateiname im Datenspeicher"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "Archiv-Dateiname"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Aktueller Dateiname im Archiv"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr "Original-Dateiname"
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr "Der Originalname der Datei beim Hochladen"
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "Archiv-Seriennummer"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Die Position dieses Dokuments in Ihrem physischen Dokumentenarchiv."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "Dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "Dokumente"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "Debug"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "Information"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "Warnung"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "Fehler"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "Kritisch"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "Gruppe"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "Nachricht"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "Level"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "Protokoll"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "Protokoll"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "Gespeicherte Ansicht"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "Gespeicherte Ansichten"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "Benutzer"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "Auf Startseite zeigen"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "In Seitenleiste zeigen"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "Sortierfeld"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "Umgekehrte Sortierung"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "Titel enthält"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "Inhalt enthält"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN ist"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "Korrespondent ist"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "Dokumenttyp ist"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "Ist im Posteingang"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "Hat Tag"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "Hat irgendein Tag"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "Ausgestellt vor"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "Ausgestellt nach"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "Ausgestellt im Jahr"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "Ausgestellt im Monat"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "Ausgestellt am Tag"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "Hinzugefügt vor"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "Hinzugefügt nach"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "Geändert vor"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "Geändert nach"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "Hat nicht folgendes Tag"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "Dokument hat keine ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "Titel oder Inhalt enthält"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "Volltextsuche"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "Ähnliche Dokumente"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "hat Tags in"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr "ASN größer als"
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr "ASN kleiner als"
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr "Speicherpfad ist"
+
+#: documents/models.py:422
msgid "rule type"
msgstr "Regeltyp"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "Wert"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "Filterregel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "Filterregeln"
-#: documents/models.py:521
-msgid "started"
-msgstr "gestartet"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr "Aufgaben ID"
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr "Celery-ID für die ausgeführte Aufgabe"
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr "Bestätigt"
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr "Wenn die Aufgabe über das Frontend oder die API bestätigt wird"
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr "Aufgabenname"
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr "Name der Datei, für die die Aufgabe ausgeführt wurde"
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr "Name der ausgeführten Aufgabe"
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr "Aufgabe: Positionsargumente"
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr "JSON-Darstellung der Positionsargumente, die für die Aufgabe verwendet werden"
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr "Aufgabe: Benannte Argumente"
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr "JSON-Darstellung der benannten Argumente, die für die Aufgabe verwendet werden"
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr "Aufgabe: Status"
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr "Aktueller Status der laufenden Aufgabe"
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr "Erstellungsdatum/-zeit"
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr "Zeitpunkt, an dem das Ergebnis der Aufgabe erstellt wurde (in UTC)"
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr "Startzeitpunk"
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr "Zeitpunkt, als die Aufgabe erstellt wurde (in UTC)"
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr "Abgeschlossen Zeitpunkt"
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr "Zeitpunkt, an dem die Aufgabe abgeschlossen wurde (in UTC)"
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr "Ergebnisse"
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr "Die von der Aufgabe zurückgegebenen Daten"
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr "Kommentar zu diesem Dokument"
+
+#: documents/models.py:642
+msgid "comment"
+msgstr "Kommentar"
+
+#: documents/models.py:643
+msgid "comments"
+msgstr "Kommentare"
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ungültiger regulärer Ausdruck: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ungültige Farbe."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Dateityp %(type)s nicht unterstützt"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Ungültige Variable entdeckt."
@@ -444,87 +556,87 @@ msgstr "Kennwort"
msgid "Sign in"
msgstr "Anmelden"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Englisch (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Belarussisch"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tschechisch"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dänisch"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Deutsch"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Englisch (UK)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spanisch"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Französisch"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italienisch"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburgisch"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Niederländisch"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polnisch"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugiesisch (Brasilien)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugiesisch"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumänisch"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russisch"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slowenisch"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbisch"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Schwedisch"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Türkisch"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Vereinfachtes Chinesisch"
diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po
index 3b565f02e..5236e3433 100644
--- a/src/locale/es_ES/LC_MESSAGES/django.po
+++ b/src/locale/es_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Cualquier palabra"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Todas las palabras"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Coincidencia exacta"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Expresión regular"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Palabra borrosa"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automático"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nombre"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "coincidencia"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "Algoritmo de coincidencia"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "es insensible"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "interlocutor"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "interlocutores"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "color"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "es etiqueta de bandeja"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Marca esta etiqueta como una etiqueta de bandeja: todos los documentos recién consumidos serán etiquetados con las etiquetas de bandeja."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etiqueta"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiquetas"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tipo de documento"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipos de documento"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "ruta"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "ruta de almacenamiento"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "rutas de almacenamiento"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Sin cifrar"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Cifrado con GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "título"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "contenido"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Los datos de texto en bruto del documento. Este campo se utiliza principalmente para las búsquedas."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "tipo MIME"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "Cadena de verificación"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "La cadena de verificación del documento original."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "cadena de comprobación del archivo"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "La cadena de verificación del documento archivado."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "creado"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificado"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tipo de almacenamiento"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "añadido"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nombre del archivo"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nombre de archivo actual en disco"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nombre de archivo"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nombre de archivo actual en disco"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "número de serie del archivo"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Posición de este documento en tu archivo físico de documentos."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "documento"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documentos"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "depuración"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "información"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "alerta"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "error"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "crítico"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupo"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "mensaje"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivel"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "log"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logs"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "vista guardada"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "vistas guardadas"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "usuario"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "mostrar en el panel de control"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "mostrar en barra lateral"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "campo de ordenación"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "ordenar al revés"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "el título contiene"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "el contenido contiene"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN es"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "interlocutor es"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "el tipo de documento es"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "está en la bandeja de entrada"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "tiene la etiqueta"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "tiene cualquier etiqueta"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "creado antes"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "creado después"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "el año de creación es"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "el mes de creación es"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "creado el día"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "agregado antes de"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "agregado después de"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificado después de"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificado antes de"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "no tiene la etiqueta"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "no tiene ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "el título o cuerpo contiene"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "consulta de texto completo"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "más contenido similar"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "tiene etiquetas en"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tipo de regla"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valor"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "regla de filtrado"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "reglas de filtrado"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Expresión irregular inválida: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Color inválido."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Tipo de fichero %(type)s no suportado"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Variable inválida."
@@ -444,87 +556,87 @@ msgstr "Contraseña"
msgid "Sign in"
msgstr "Iniciar sesión"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Inglés (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Bielorruso"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Checo"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danés"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Alemán"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Inglés (Gran Bretaña)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Español"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francés"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiano"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburgués"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Alemán"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polaco"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugués (Brasil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugués"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumano"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ruso"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Esloveno"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbio"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Sueco"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turco"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Chino simplificado"
diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po
index 8d817560e..0d9293cd4 100644
--- a/src/locale/fi_FI/LC_MESSAGES/django.po
+++ b/src/locale/fi_FI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-09-06 20:21\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Language: fi_FI\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentit"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Mikä tahansa sana"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Kaikki sanat"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Tarkka osuma"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Säännöllinen lauseke (regex)"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Sumea sana"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automaattinen"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nimi"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "osuma"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "tunnistusalgoritmi"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "ei ole herkkä"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "yhteyshenkilö"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "yhteyshenkilöt"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "väri"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "on uusien tunniste"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Merkitsee tämän tunnisteen uusien tunnisteeksi: Kaikille vastasyötetyille tiedostoille annetaan tämä tunniste."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "tunniste"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "tunnisteet"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "asiakirjatyyppi"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "asiakirjatyypit"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "polku"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "tallennustilan polku"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "tallennustilan polut"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Salaamaton"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "GNU Privacy Guard -salattu"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "otsikko"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "sisältö"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Raaka vain teksti -muotoinen dokumentin sisältö. Kenttää käytetään pääasiassa hakutoiminnossa."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime-tyyppi"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "tarkistussumma"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Alkuperäisen dokumentin tarkistussumma."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arkistotarkastussumma"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Arkistoidun dokumentin tarkistussumma."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "luotu"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "muokattu"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tallennustilan tyyppi"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "lisätty"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "tiedostonimi"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Tiedostonimi tallennustilassa"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "arkistointitiedostonimi"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Tämänhetkinen arkistointitiedostoimi tallennustilassa"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arkistointisarjanumero"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Dokumentin sijainti fyysisessa dokumenttiarkistossa."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokumentti"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumentit"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "virheenjäljitys"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informaatio"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "varoitus"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "virhe"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kriittinen"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "ryhmä"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "viesti"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "taso"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "loki"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "lokit"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "tallennettu näkymä"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "tallennetut näkymät"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "käyttäjä"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "näytä etusivulla"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "näytä sivupaneelissa"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "lajittelukenttä"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "lajittele käänteisesti"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "otsikko sisältää"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "sisältö sisältää"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN on"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "yhteyshenkilö on"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "dokumenttityyppi on"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "on uusi"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "on tagattu"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "on mikä tahansa tagi"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "luotu ennen"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "luotu jälkeen"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "luotu vuonna"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "luotu kuukautena"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "luomispäivä on"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "lisätty ennen"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "lisätty jälkeen"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "muokattu ennen"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "muokattu jälkeen"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "ei ole tagia"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "ei ole ASN-numeroa"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "otsikko tai sisältö sisältää"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "fulltext-kysely"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "enemmän kuten tämä"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "sisältää tagit"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "sääntötyyppi"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "arvo"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "suodatussääntö"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "suodatussäännöt"
-#: documents/models.py:521
-msgid "started"
-msgstr "aloitettu"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Virheellinen regex-lauseke: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Virheellinen väri."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Tiedostotyyppiä %(type)s ei tueta"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Virheellinen muuttuja havaittu."
@@ -444,87 +556,87 @@ msgstr "Salasana"
msgid "Sign in"
msgstr "Kirjaudu sisään"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Englanti (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "valkovenäjä"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tšekki"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Tanska"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Saksa"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Englanti (US)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Espanja"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Ranska"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italia"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburg"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Hollanti"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "puola"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "portugali (Brasilia)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "portugali"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "romania"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "venäjä"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovenia"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbia"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "ruotsi"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turkki"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Kiina (yksinkertaistettu)"
diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po
index 75b58e884..f04e63dba 100644
--- a/src/locale/fr_FR/LC_MESSAGES/django.po
+++ b/src/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-09-07 21:41\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Un des mots"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Tous les mots"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Concordance exacte"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Expression régulière"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Mot approximatif"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatique"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nom"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "rapprochement"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algorithme de rapprochement"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "est insensible à la casse"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "correspondant"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "correspondants"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "couleur"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "est une étiquette de boîte de réception"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Marque cette étiquette comme étiquette de boîte de réception : ces étiquettes sont affectées à tous les documents nouvellement traités."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "étiquette"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "étiquettes"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "type de document"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "types de document"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "chemin"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "chemin de stockage"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "chemins de stockage"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Non chiffré"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Chiffré avec GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titre"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "contenu"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Les données brutes du document, en format texte uniquement. Ce champ est principalement utilisé pour la recherche."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "type mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "somme de contrôle"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "La somme de contrôle du document original."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "somme de contrôle de l'archive"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "La somme de contrôle du document archivé."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "créé le"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modifié"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "forme d'enregistrement :"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "date d'ajout"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nom du fichier"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nom du fichier courant en base de données"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nom de fichier de l'archive"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nom du fichier d'archive courant en base de données"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "numéro de série de l'archive"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Le classement de ce document dans votre archive de documents physiques."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "document"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documents"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "débogage"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informations"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "avertissement"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "erreur"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "critique"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "groupe"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "message"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "niveau"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "journal"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "journaux"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "vue enregistrée"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "vues enregistrées"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "utilisateur"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "montrer sur le tableau de bord"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "montrer dans la barre latérale"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "champ de tri"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "tri inverse"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "le titre contient"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "le contenu contient"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "le NSA est"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "le correspondant est"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "le type de document est"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "est dans la boîte de réception"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "porte l'étiquette"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "porte l'une des étiquettes"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "créé avant"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "créé après"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "l'année de création est"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "le mois de création est"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "le jour de création est"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "ajouté avant"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "ajouté après"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modifié avant"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modifié après"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "ne porte pas d'étiquette"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "ne porte pas de NSA"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "le titre ou le contenu contient"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "recherche en texte intégral"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "documents relatifs"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "porte une étiquette parmi"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "type de règle"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valeur"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "règle de filtrage"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "règles de filtrage"
-#: documents/models.py:521
-msgid "started"
-msgstr "démarré"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Expression régulière incorrecte : %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Couleur incorrecte."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Type de fichier %(type)s non pris en charge"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Variable non valide détectée."
@@ -444,87 +556,87 @@ msgstr "Mot de passe"
msgid "Sign in"
msgstr "S'identifier"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Anglais (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Biélorusse"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tchèque"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danois"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Allemand"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Anglais (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Espagnol"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Français"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italien"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxembourgeois"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Néerlandais"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polonais"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugais (Brésil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugais"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Roumain"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russe"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovène"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbe"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Suédois"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turc"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Chinois simplifié"
diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po
index 4e72bc604..8f23c554f 100644
--- a/src/locale/he_IL/LC_MESSAGES/django.po
+++ b/src/locale/he_IL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:06\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Language: he_IL\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "מסמכים"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "מילה כלשהי"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "כל המילים"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "התאמה מדוייקת"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "ביטוי רגולרי"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "מילה מעורפלת"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "אוטומטי"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "שם"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "התאמה"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "אלגוריתם התאמה"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "אינו רגיש"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "מכותב"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "מכותבים"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "צבע"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "תגית דואר נכנס"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "מסמן תגית זו כתגית דואר נכנס: כל המסמכים החדשים שהתקבלו יתויגו עם תגית דואר נכנס."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "תגית"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "תגיות"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "סוג מסמך"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "סוגי מסמך"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "נתיב"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "נתיב אכסון"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "נתיבי אכסון"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "לא מוצפן"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "הוצפן באמצעות GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "כותרת"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "תוכן"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "הנתונים הגולמיים של המסמך, המכילים טקסט בלבד. שדה זה משמש בעיקר לצורך חיפוש."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "סוג mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "מחרוזת בדיקה"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "מחרוזת בדיקה של המסמך המקורי."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "מחרוזת בדיקה לארכיון"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "מחרוזת הבדיקה למסמך בארכיון."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "נוצר"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "נערך לאחרונה"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "סוג אחסון"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "התווסף"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "שם קובץ"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "שם קובץ נוכחי באחסון"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "שם קובץ בארכיון"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "שם קובץ ארכיוני נוכחי באחסון"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "מספר סידורי בארכיון"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "מיקומו של מסמך זה בארכיון המסמכים הפיזי שלך."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "מסמך"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "מסמכים"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "ניפוי שגיאות"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "מידע"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "אזהרה"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "שגיאה"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "קריטי"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "קבוצה"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "הודעה"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "רמה"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "יומן רישום"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "יומני רישום"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "תצוגה שמורה"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "תצוגות שמורות"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "משתמש"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "הצג בדשבורד"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "הצג בסרגל צידי"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "שדה המיון"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "מיין הפוך"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "כותרת מכילה"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "תוכן מכיל"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "מס\"ד הוא"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "מכותב הוא"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "סוג מסמך הוא"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "בתיבה הנכנסת"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ישנו תיוג"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ישנו כל תיוג"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "נוצר לפני"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "נוצר לאחר"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "נוצר בשנת"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "נוצר בחודש"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "נוצר ביום"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "הוסף לפני"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "הוסף אחרי"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "נערך לפני"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "נערך אחרי"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "אינו כולל את התיוג"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "אינו בעל מס\"ד"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "כותרת או תוכן מכילים"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "שאילתת טקסט מלא"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "עוד כמו זה"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "מכיל תגים ב-"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "סוג כלל"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "ערך"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "חוק סינון"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "חוקי סינון"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "ביטוי רגולרי בלתי חוקי: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "צבע לא חוקי."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "סוג קובץ %(type)s לא נתמך"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "משתנה לא חוקי זוהה."
@@ -444,87 +556,87 @@ msgstr "סיסמה"
msgid "Sign in"
msgstr "התחבר"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "אנגלית (ארה\"ב)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "בלרוסית"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "צ'כית"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "דנית"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "גרמנית"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "אנגלית (בריטניה)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "ספרדית"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "צרפתית"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "איטלקית"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "לוקסמבורגית"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "הולנדית"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "פולנית"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "פורטוגזית (ברזיל)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "פורטוגזית"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "רומנית"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "רוסית"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "סלובנית"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "סרבית"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "שוודית"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "טורקית"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "סינית מופשטת"
diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po
index d5b34f4e9..8e484555b 100644
--- a/src/locale/hr_HR/LC_MESSAGES/django.po
+++ b/src/locale/hr_HR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-09 12:27\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"Language: hr_HR\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Bilo koja riječ"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Sve riječi"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Točno podudaranje"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Uobičajeni izraz"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Nejasna riječ"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatski"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "ime"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "podudarati"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritam podudaranja"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "ne razlikuje velika i mala slova"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "dopisnik"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "dopisnici"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "boja"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "oznaka ulazne pošte (inbox)"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Označava ovu oznaku kao oznaku ulazne pošte (inbox): Svi novopotrošeni dokumenti bit će označeni oznakama ulazne pošte (inbox)."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "oznaka"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "oznake"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "vrsta dokumenta"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "vrste dokumenta"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "putanja"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "putanja pohrane"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "putanje pohrane"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Nekriptirano"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Enkriptirano s GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "naslov"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "sadržaj"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Neobrađeni tekstualni podaci dokumenta. Ovo se polje koristi prvenstveno za pretraživanje."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "vrste mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrolni zbroj"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrolni zbroj originalnog dokumenta."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arhivski kontrolni zbroj"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrolni zbroj arhiviranog dokumenta."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "stvoreno"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificiran"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "vrsta pohrane"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "dodano"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "naziv datoteke"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Trenutni naziv pohranjene datoteke"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "naziv arhivirane datoteke"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Trenutni naziv arhivirane pohranjene datoteke"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arhivirani serijski broj"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenti"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "otklanjanje pogrešaka"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informacije"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "upozorenje"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "greška"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritično"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupa"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "poruka"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "razina"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "zapisnik"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "zapisnici"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "spremljen prikaz"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "spremljeni prikazi"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "korisnik"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "prikaži na nadzornoj ploči"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "prikaži u bočnoj traci"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sortiraj polje"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "obrnuto sortiranje"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "naslov sadrži"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "sadržaj sadrži"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN je"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "dopisnik je"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "vrsta dokumenta je"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "nalazi se u ulaznoj pošti"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ima oznaku"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ima bilo kakvu oznaku"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "stvoreni prije"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "stvoreno poslije"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "godina stvaranja je"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "mjesec stvaranja je"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dan stvaranja je"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "dodano prije"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "dodano poslije"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificirano prije"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificirano poslije"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "ne posjeduje oznaku"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "ne posjeduje ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "naziv ili sadržaj sadrži"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "upit za cijeli tekst"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "više poput ovog"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "sadrži oznake"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "vrsta pravila"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "vrijednost"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "pravilo filtera"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "pravila filtera"
-#: documents/models.py:521
-msgid "started"
-msgstr "započeto"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Nevažeći regularni izraz: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Nevažeća boja."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s nije podržana"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Otkrivena je nevaljana vrsta datoteke."
@@ -444,87 +556,87 @@ msgstr "Lozinka"
msgid "Sign in"
msgstr "Prijava"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engleski (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Bjeloruski"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Češki"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danski"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Njemački"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engleski (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Španjolski"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francuski"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Talijanski"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luksemburški"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Nizozemski"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Poljski"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugalski"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumunjski"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ruski"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovenski"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Srpski"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Švedski"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turski"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Pojednostavljeni kineski"
diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po
index c827d96f0..92c0790a5 100644
--- a/src/locale/it_IT/LC_MESSAGES/django.po
+++ b/src/locale/it_IT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-03 11:24\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-12 10:50\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Language: it_IT\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documenti"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Qualsiasi parola"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Tutte le parole"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Corrispondenza esatta"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Espressione regolare"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Parole fuzzy"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatico"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nome"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "corrispondenza"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritmo di corrispondenza"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "non distingue maiuscole e minuscole"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "corrispondente"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "corrispondenti"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "colore"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "è tag di arrivo"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati verranno taggati con questo tag."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "tag"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "tag"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tipo di documento"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipi di documento"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "percorso"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "percorso di archiviazione"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "percorsi di archiviazione"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Non criptato"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Criptato con GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titolo"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "contenuto"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "I dati grezzi o solo testo del documento. Questo campo è usato principalmente per la ricerca."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "tipo mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "checksum"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Il checksum del documento originale."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "checksum dell'archivio"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Il checksum del documento archiviato."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "creato il"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificato il"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tipo di storage"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "aggiunto il"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nome del file"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nome del file corrente nello storage"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "Nome file in archivio"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Il nome del file nell'archiviazione"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr "nome file originale"
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr "Il nome originale del file quando è stato caricato"
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "numero seriale dell'archivio"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Posizione di questo documento all'interno dell'archivio fisico."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "documento"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documenti"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "debug"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informazione"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "avvertimento"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "errore"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "critico"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "gruppo"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "messaggio"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "livello"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "logs"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "log"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "vista salvata"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "viste salvate"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "utente"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "mostra sul cruscotto"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "mostra nella barra laterale"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "campo di ordinamento"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "ordine invertito"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "il titolo contiene"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "il contenuto contiene"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN è"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "la corrispondenza è"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "il tipo di documento è"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "è in arrivo"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ha etichetta"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ha qualsiasi etichetta"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "creato prima del"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "creato dopo il"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "l'anno di creazione è"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "il mese di creazione è"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "il giorno di creazione è"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "aggiunto prima del"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "aggiunto dopo il"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificato prima del"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificato dopo"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "non ha tag"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "non ha ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "il titolo o il contenuto contiene"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "query fulltext"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "altro come questo"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "ha tag in"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr "ASN maggiore di"
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr "ASN minore di"
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr "il percorso di archiviazione è"
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tipo di regola"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valore"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "regola filtro"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "regole filtro"
-#: documents/models.py:521
-msgid "started"
-msgstr "avviato"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr "ID Attività"
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr "commento"
+
+#: documents/models.py:643
+msgid "comments"
+msgstr "commenti"
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Espressione regolare non valida: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Colore non valido."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Il tipo di file %(type)s non è supportato"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Variabile non valida."
@@ -444,87 +556,87 @@ msgstr "Password"
msgid "Sign in"
msgstr "Accedi"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Inglese (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Bielorusso"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Ceco"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danese"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Tedesco"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Inglese (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spagnolo"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francese"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiano"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Lussemburghese"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Olandese"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polacco"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portoghese (Brasile)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portoghese"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumeno"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russo"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Sloveno"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbo"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Svedese"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turco"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Cinese semplificato"
diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po
index d9d85b767..e7c1b2234 100644
--- a/src/locale/lb_LU/LC_MESSAGES/django.po
+++ b/src/locale/lb_LU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n"
"Language-Team: Luxembourgish\n"
"Language: lb_LU\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Iergendee Wuert"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "All d'Wierder"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Exakten Treffer"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regulären Ausdrock"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Ongenaut Wuert"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatesch"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "Numm"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "Zouweisungsmuster"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "Zouweisungsalgorithmus"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "Grouss-/Klengschreiwung ignoréieren"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "Korrespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "Korrespondenten"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "Faarf"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "Postaganks-Etikett"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Dës Etikett als Postaganks-Etikett markéieren: All nei importéiert Dokumenter kréien ëmmer dës Etikett zougewisen."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "Etikett"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "Etiketten"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "Dokumententyp"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "Dokumententypen"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "Pfad"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "Späicherpfad"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "Späicherpfaden"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Onverschlësselt"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Verschlësselt mat GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "Titel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "Inhalt"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "De réien Textinhalt vum Dokument. Dëst Feld gëtt primär fir d'Sich benotzt."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "MIME-Typ"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "Préifzomm"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "D'Préifzomm vum Original-Dokument."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "Archiv-Préifzomm"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "D'Préifzomm vum archivéierten Dokument."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "erstallt"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "verännert"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "Späichertyp"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "derbäigesat"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "Fichiersnumm"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Aktuellen Dateinumm am Späicher"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "Archiv-Dateinumm"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Aktuellen Dateinumm am Archiv"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "Archiv-Seriennummer"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "D'Positioun vun dësem Dokument am physeschen Dokumentenarchiv."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "Dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "Dokumenter"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "Fehlersiich"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "Informatioun"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "Warnung"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "Feeler"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritesch"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "Grupp"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "Message"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "Niveau"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "Protokoll"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "Protokoller"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "Gespäichert Usiicht"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "Gespäichert Usiichten"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "Benotzer"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "Op der Startsäit uweisen"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "An der Säiteleescht uweisen"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "Zortéierfeld"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "ëmgedréint zortéieren"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "Titel enthält"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "Inhalt enthält"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN ass"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "Korrespondent ass"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "Dokumententyp ass"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "ass am Postagank"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "huet Etikett"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "huet iergendeng Etikett"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "erstallt virun"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "erstallt no"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "Erstellungsjoer ass"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "Erstellungsmount ass"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "Erstellungsdag ass"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "dobäigesat virun"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "dobäigesat no"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "verännert virun"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "verännert no"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "huet dës Etikett net"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "huet keng ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "Titel oder Inhalt enthalen"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "Volltextsich"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "ähnlech Dokumenter"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "huet Etiketten an"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "Reegeltyp"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "Wäert"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "Filterreegel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "Filterreegelen"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ongëltege regulären Ausdrock: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ongëlteg Faarf."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Fichierstyp %(type)s net ënnerstëtzt"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Ongëlteg Zeechen detektéiert."
@@ -444,87 +556,87 @@ msgstr "Passwuert"
msgid "Sign in"
msgstr "Umellen"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Englesch (USA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Belarusesch"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tschechesch"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dänesch"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Däitsch"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Englesch (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spuenesch"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Franséisch"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italienesch"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Lëtzebuergesch"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Hollännesch"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polnesch"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugisesch (Brasilien)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugisesch"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumänesch"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russesch"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slowenesch"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbesch"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Schwedesch"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Tierkesch"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Chinesesch (Vereinfacht)"
diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po
index db1047e5b..4cf2fb4a5 100644
--- a/src/locale/nl_NL/LC_MESSAGES/django.po
+++ b/src/locale/nl_NL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-10-27 09:51\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Language: nl_NL\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documenten"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Elk woord"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Alle woorden"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Exacte overeenkomst"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Reguliere expressie"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Gelijkaardig woord"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatisch"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "naam"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "Overeenkomst"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "Algoritme voor het bepalen van de overeenkomst"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "is niet hoofdlettergevoelig"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "correspondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "correspondenten"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "Kleur"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "is \"Postvak in\"-label"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Markeert dit label als een \"Postvak in\"-label: alle nieuw verwerkte documenten krijgen de \"Postvak in\"-labels."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "label"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "labels"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "documenttype"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "documenttypen"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "pad"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "opslag pad"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "opslag paden"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Niet versleuteld"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Versleuteld met GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "inhoud"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "De onbewerkte gegevens van het document. Dit veld wordt voornamelijk gebruikt om te zoeken."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mimetype"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "checksum"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "De checksum van het oorspronkelijke document."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "archief checksum"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "De checksum van het gearchiveerde document."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "aangemaakt"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "gewijzigd"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "type opslag"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "toegevoegd"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "bestandsnaam"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Huidige bestandsnaam in opslag"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "Bestandsnaam in archief"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Huidige bestandsnaam in archief"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "serienummer in archief"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "De positie van dit document in je fysieke documentenarchief."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "document"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documenten"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "debug"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informatie"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "waarschuwing"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "fout"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritisch"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "groep"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "bericht"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "niveau"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "bericht"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "berichten"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "opgeslagen view"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "opgeslagen views"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "gebruiker"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "weergeven op dashboard"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "weergeven in zijbalk"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sorteerveld"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "omgekeerd sorteren"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "titel bevat"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "inhoud bevat"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN is"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "correspondent is"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "documenttype is"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "zit in \"Postvak in\""
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "heeft label"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "heeft één van de labels"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "aangemaakt voor"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "aangemaakt na"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "aangemaakt jaar is"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "aangemaakte maand is"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "aangemaakte dag is"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "toegevoegd voor"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "toegevoegd na"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "gewijzigd voor"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "gewijzigd na"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "heeft geen label"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "heeft geen ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "titel of inhoud bevat"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "inhoud doorzoeken"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "meer zoals dit"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "heeft tags in"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "type regel"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "waarde"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filterregel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filterregels"
-#: documents/models.py:521
-msgid "started"
-msgstr "gestart"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ongeldige reguliere expressie: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ongeldig kleur."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Bestandstype %(type)s niet ondersteund"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Ongeldige variabele ontdekt."
@@ -444,87 +556,87 @@ msgstr "Wachtwoord"
msgid "Sign in"
msgstr "Aanmelden"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engels (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Wit-Russisch"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tsjechisch"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Deens"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Duits"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engels (Brits)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spaans"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Frans"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiaans"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburgs"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Nederlands"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Pools"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugees (Brazilië)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugees"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Roemeens"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russisch"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Sloveens"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Servisch"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Zweeds"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turks"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Chinees (vereenvoudigd)"
diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po
index d5a1a2b09..6137ea8db 100644
--- a/src/locale/no_NO/LC_MESSAGES/django.po
+++ b/src/locale/no_NO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-03 08:59\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Hvilket som helst ord"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Alle ord"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Eksakt match"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regulære uttrykk"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Fuzzy word"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatisk"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "navn"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "treff"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "samsvarende algoritme"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "er insensitiv"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korrespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korrespondenter"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "farge"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "er innboks tag"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Markerer dette merket som en innboks-tag: Alle nybrukte dokumenter vil bli merket med innboks-tagger."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "tagg"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "tagger"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "dokument type"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "dokumenttyper"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "sti"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "lagringssti"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "lagringsveier"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Ukryptert"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Kryptert med GNU Personvernvakt"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "tittel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "innhold"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Raw, tekstbare data fra dokumentet. Dette feltet brukes primært for søking."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime type"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "sjekksum"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Sjekksummen av det opprinnelige dokumentet."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arkiv sjekksum"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Sjekksummen av det arkiverte dokumentet."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "opprettet"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "endret"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "lagringstype"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "lagt til"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "filnavn"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Gjeldende filnavn i lagring"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "arkiver filnavn"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Gjeldende arkiv filnavn i lagring"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arkiver serienummer"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Dokumentets posisjon i ditt fysiske dokumentarkiv."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenter"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "feilsøk"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informasjon"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "advarsel"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "feil"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritisk"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "gruppe"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "melding"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivå"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "Logg"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logger"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "lagret visning"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "lagrede visninger"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "bruker"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "vis på dashbordet"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "vis i sidestolpen"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sorter felt"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "sorter på baksiden"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "tittelen inneholder"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "innholdet inneholder"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN er"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "tilsvarendet er"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "dokumenttype er"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "er i innboksen"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "har tagg"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "har en tag"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "opprettet før"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "opprettet etter"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "opprettet år er"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "opprettet måned er"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "opprettet dag er"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "lagt til før"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "lagt til etter"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "endret før"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "endret etter"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "har ikke tagg"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "har ikke ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "tittel eller innhold inneholder"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "full tekst spørring"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mer som dette"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "har tags i"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "Type regel"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "verdi"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtrer regel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtrer regler"
-#: documents/models.py:521
-msgid "started"
-msgstr "startet"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ugyldig regulært uttrykk: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ugyldig farge."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Filtype %(type)s støttes ikke"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Ugyldig variabel oppdaget."
@@ -444,87 +556,87 @@ msgstr "Passord"
msgid "Sign in"
msgstr "Logg inn"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engelsk (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Hviterussisk"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tsjekkisk"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dansk"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Tysk"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engelsk (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spansk"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Fransk"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiensk"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxembourgsk"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Nederlandsk"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polsk"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugisisk"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumensk"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russisk"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovenian"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbisk"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Svensk"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Tyrkisk"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Kinesisk forenklet"
diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po
index 29ca75596..4e6564254 100644
--- a/src/locale/pl_PL/LC_MESSAGES/django.po
+++ b/src/locale/pl_PL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-17 11:20\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Language: pl_PL\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Dowolne słowo"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Wszystkie słowa"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Dokładne dopasowanie"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Wyrażenie regularne"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Dopasowanie rozmyte"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatyczny"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nazwa"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "dopasowanie"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algorytm dopasowania"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "bez rozróżniania wielkości znaków"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korespondenci"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "kolor"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "jest tagiem skrzynki odbiorczej"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Zaznacza ten tag jako tag skrzynki odbiorczej: Wszystkie nowo przetworzone dokumenty będą oznaczone tagami skrzynki odbiorczej."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "znacznik"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "tagi"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "typ dokumentu"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "typy dokumentów"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "ścieżka"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "ścieżka przechowywania"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "ścieżki składowania"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Niezaszyfrowane"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Zaszyfrowane przy użyciu GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "tytuł"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "zawartość"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Surowe, tekstowe dane dokumentu. To pole jest używane głównie do wyszukiwania."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime type"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "suma kontrolna"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Suma kontrolna oryginalnego dokumentu."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "suma kontrolna archiwum"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Suma kontrolna zarchiwizowanego dokumentu."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "utworzono"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "zmodyfikowano"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "typ przechowywania"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "dodano"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nazwa pliku"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Aktualna nazwa pliku w pamięci"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nazwa pliku archiwum"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Aktualna nazwa pliku archiwum w pamięci"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "numer seryjny archiwum"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Pozycja tego dokumentu w archiwum dokumentów fizycznych."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenty"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "debugowanie"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informacja"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "ostrzeżenie"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "błąd"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "krytyczne"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupa"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "wiadomość"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "poziom"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "log"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logi"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "zapisany widok"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "zapisane widoki"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "użytkownik"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "pokaż na stronie głównej"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "pokaż na pasku bocznym"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "pole sortowania"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "sortuj malejąco"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "tytuł zawiera"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "zawartość zawiera"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "numer archiwum jest"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "korespondentem jest"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "typ dokumentu jest"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "jest w skrzynce odbiorczej"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ma tag"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ma dowolny tag"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "utworzony przed"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "utworzony po"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "rok utworzenia to"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "miesiąc utworzenia to"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dzień utworzenia to"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "dodany przed"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "dodany po"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "zmodyfikowany przed"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "zmodyfikowany po"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "nie ma tagu"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "nie ma numeru archiwum"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "tytuł lub zawartość zawiera"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "zapytanie pełnotekstowe"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "podobne dokumenty"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "ma znaczniki w"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "typ reguły"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "wartość"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "reguła filtrowania"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "reguły filtrowania"
-#: documents/models.py:521
-msgid "started"
-msgstr "start"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Nieprawidłowe wyrażenie regularne: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Nieprawidłowy kolor."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Typ pliku %(type)s nie jest obsługiwany"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Wykryto nieprawidłową zmienną."
@@ -444,87 +556,87 @@ msgstr "Hasło"
msgid "Sign in"
msgstr "Zaloguj się"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Angielski (USA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Białoruski"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Czeski"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Duński"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Niemiecki"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Angielski (Wielka Brytania)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Hiszpański"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francuski"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Włoski"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luksemburski"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Holenderski"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polski"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazylia)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugalski"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumuński"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Rosyjski"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Słoweński"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Serbski"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Szwedzki"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turecki"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Chiński uproszczony"
diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po
index 4690bd84d..1be9d6460 100644
--- a/src/locale/pt_BR/LC_MESSAGES/django.po
+++ b/src/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Qualquer palavra"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Todas as palavras"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Detecção exata"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Expressão regular"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Palavra difusa (fuzzy)"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automático"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nome"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "detecção"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritmo de detecção"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "diferencia maiúsculas de minúsculas"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "correspondente"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "correspondentes"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "cor"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "é etiqueta caixa de entrada"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Marca essa etiqueta como caixa de entrada: Todos os novos documentos consumidos terão as etiquetas de caixa de entrada."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etiqueta"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiquetas"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tipo de documento"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipos de documento"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Não encriptado"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Encriptado com GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "título"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "conteúdo"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "O conteúdo de texto bruto do documento. Esse campo é usado principalmente para busca."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "tipo mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "some de verificação"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "A soma de verificação original do documento."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "Soma de verificação de arquivamento."
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "A soma de verificação do documento arquivado."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "criado"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificado"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tipo de armazenamento"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "adicionado"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nome do arquivo"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nome do arquivo atual armazenado"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nome do arquivo para arquivamento"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nome do arquivo para arquivamento armazenado"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "número de sério de arquivamento"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "A posição deste documento no seu arquivamento físico."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "documento"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documentos"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "debug"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informação"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "aviso"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "erro"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "crítico"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupo"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "mensagem"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nível"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "log"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logs"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "visualização"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "visualizações"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "usuário"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "exibir no painel de controle"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "exibir no painel lateral"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "ordenar campo"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "odernar reverso"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "título contém"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "conteúdo contém"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "NSA é"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "correspondente é"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "tipo de documento é"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "é caixa de entrada"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "contém etiqueta"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "contém qualquer etiqueta"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "criado antes de"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "criado depois de"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "ano de criação é"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "mês de criação é"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dia de criação é"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "adicionado antes de"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "adicionado depois de"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificado antes de"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificado depois de"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "não tem etiqueta"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "não tem NSA"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "título ou conteúdo contém"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "pesquisa de texto completo"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mais como este"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "contém etiqueta em"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tipo de regra"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valor"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "regra de filtragem"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "regras de filtragem"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Expressão regular inválida: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Cor inválida."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Tipo de arquivo %(type)s não suportado"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr ""
@@ -444,87 +556,87 @@ msgstr "Senha"
msgid "Sign in"
msgstr "Entrar"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Inglês (EUA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr ""
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Tcheco"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dinamarquês"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Alemão"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Inglês (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Espanhol"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francês"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiano"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburguês"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Holandês"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polonês"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Português (Brasil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Português"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Romeno"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russo"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr ""
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr ""
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Sueco"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr ""
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr ""
diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po
index f805a7e6b..4f3b0e9e3 100644
--- a/src/locale/pt_PT/LC_MESSAGES/django.po
+++ b/src/locale/pt_PT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Qualquer palavra"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Todas as palavras"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Detecção exata"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Expressão regular"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Palavra difusa (fuzzy)"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automático"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nome"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "correspondência"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritmo correspondente"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "é insensível"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "correspondente"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "correspondentes"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "cor"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "é etiqueta de novo"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Marca esta etiqueta como uma etiqueta de entrada. Todos os documentos recentemente consumidos serão etiquetados com a etiqueta de entrada."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etiqueta"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiquetas"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tipo de documento"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipos de documento"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Não encriptado"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Encriptado com GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "título"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "conteúdo"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Os dados de texto, em cru, do documento. Este campo é utilizado principalmente para pesquisar."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "tipo mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "soma de verificação"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "A soma de verificação do documento original."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arquivar soma de verificação"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "A soma de verificação do documento arquivado."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "criado"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificado"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tipo de armazenamento"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "adicionado"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nome de ficheiro"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nome do arquivo atual no armazenamento"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nome do ficheiro de arquivo"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nome do arquivo atual em no armazenamento"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "numero de série de arquivo"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "A posição do documento no seu arquivo físico de documentos."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "documento"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documentos"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "depurar"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informação"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "aviso"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "erro"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "crítico"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupo"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "mensagem"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nível"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "registo"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "registos"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "vista guardada"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "vistas guardadas"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "utilizador"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "exibir no painel de controlo"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "mostrar na navegação lateral"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "ordenar campo"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "ordenar inversamente"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "o título contém"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "o conteúdo contém"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "O NSA é"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "o correspondente é"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "o tipo de documento é"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "está na entrada"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "tem etiqueta"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "tem qualquer etiqueta"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "criado antes"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "criado depois"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "ano criada é"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "mês criado é"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dia criado é"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "adicionada antes"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "adicionado depois de"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificado antes de"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificado depois de"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "não tem etiqueta"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "não possui um NSA"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "título ou conteúdo contém"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "consulta de texto completo"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mais como este"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "tem etiquetas em"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tipo de regra"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valor"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "regra de filtragem"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "regras de filtragem"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Expressão regular inválida: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Cor invalida."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Tipo de arquivo %(type)s não suportado"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr ""
@@ -444,87 +556,87 @@ msgstr "Palavra-passe"
msgid "Sign in"
msgstr "Iniciar sessão"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Inglês (EUA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr ""
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Checo"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Dinamarquês"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Deutsch"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Inglês (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Espanhol"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Français"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiano"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburguês"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Nederlandse"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polaco"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Português (Brasil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Português"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Romeno"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Russo"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr ""
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr ""
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Sueco"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr ""
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr ""
diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po
index c1297a8b3..017ac9144 100644
--- a/src/locale/ro_RO/LC_MESSAGES/django.po
+++ b/src/locale/ro_RO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Language: ro_RO\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Documente"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Orice cuvânt"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Toate cuvintele"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Potrivire exactă"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Expresie regulată"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Mod neatent"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automat"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "nume"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "potrivire"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritm de potrivire"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "nu ține cont de majuscule"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "corespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "corespondenți"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "culoare"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "este etichetă inbox"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Marchează aceasta eticheta ca etichetă inbox: Toate documentele nou consumate primesc aceasta eticheta."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etichetă"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etichete"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tip de document"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipuri de document"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Necriptat"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Criptat cu GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titlu"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "conținut"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Textul brut al documentului. Acest camp este folosit in principal pentru căutare."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "tip MIME"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "sumă de control"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Suma de control a documentului original."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "suma de control a arhivei"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Suma de control a documentului arhivat."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "creat"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "modificat"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tip de stocare"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "adăugat"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "nume fișier"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Numele curent al fișierului stocat"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "nume fișier arhiva"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Numele curent al arhivei stocate"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "număr serial in arhiva"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Poziția acestui document in arhiva fizica."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "document"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "documente"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "depanare"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informații"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "avertizare"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "eroare"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "critic"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grup"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "mesaj"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivel"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "jurnal"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "jurnale"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "vizualizare"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "vizualizări"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "utilizator"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "afișează pe tabloul de bord"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "afișează in bara laterala"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sortează camp"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "sortează invers"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "titlul conține"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "conținutul conține"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "Avizul prealabil de expediție este"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "corespondentul este"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "tipul documentului este"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "este în inbox"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "are eticheta"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "are orice eticheta"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "creat înainte de"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "creat după"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "anul creării este"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "luna creării este"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "ziua creării este"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "adăugat înainte de"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "adăugat după"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "modificat înainte de"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "modificat după"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "nu are etichetă"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "nu are aviz prealabil de expediție"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "titlul sau conținutul conține"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "query fulltext"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mai multe ca aceasta"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "are etichete în"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tip de regula"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "valoare"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "regulă de filtrare"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "reguli de filtrare"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Expresie regulată invalida: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Culoare invalidă."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Tip de fișier %(type)s nesuportat"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr ""
@@ -444,87 +556,87 @@ msgstr "Parolă"
msgid "Sign in"
msgstr "Conectare"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engleză (Americană)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr ""
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Cehă"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Daneză"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Germană"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engleză (Britanică)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spaniolă"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Franceză"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italiană"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luxemburgheză"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Olandeză"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Poloneză"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugheză (Brazilia)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugheză"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Română"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Rusă"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr ""
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr ""
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Suedeză"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr ""
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr ""
diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po
index d5b200971..3134f1169 100644
--- a/src/locale/ru_RU/LC_MESSAGES/django.po
+++ b/src/locale/ru_RU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-03 16:12\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Документы"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Любые слова"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Все слова"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Точное соответствие"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Регулярное выражение"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "\"Нечёткий\" режим"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Автоматически"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "имя"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "соответствие"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "алгоритм сопоставления"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "без учёта регистра"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "корреспондент"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "корреспонденты"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "цвет"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "это входящий тег"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Отметить этот тег как «Входящий»: все вновь добавленные документы будут помечены тегами «Входящие»."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "тег"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "теги"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "тип документа"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "типы документов"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "путь"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "путь к хранилищу"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "пути хранения"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "не зашифровано"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Зашифровано с помощью GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "заголовок"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "содержимое"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Это поле используется в основном для поиска."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "тип Mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "контрольная сумма"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Контрольная сумма оригинального документа."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "контрольная сумма архива"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Контрольная сумма архивного документа."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "создано"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "изменено"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "тип хранилища"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "добавлено"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "имя файла"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Текущее имя файла в хранилище"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "имя файла архива"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Текущее имя файла архива в хранилище"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "архивный номер (АН)"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Позиция этого документа в вашем физическом архиве документов."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "документ"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "документы"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "отладка"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "информация"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "предупреждение"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "ошибка"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "критическая"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "группа"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "сообщение"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "уровень"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "журнал"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "логи"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "сохранённое представление"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "сохраненные представления"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "пользователь"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "показать на панели"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "показать в боковой панели"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "Поле сортировки"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "обратная сортировка"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "заголовок содержит"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "содержимое содержит"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "АН"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "корреспондент"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "тип документа"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "во входящих"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "есть тег"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "есть любой тег"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "создан до"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "создан после"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "год создания"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "месяц создания"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "день создания"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "добавлен до"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "добавлен после"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "изменен до"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "изменен после"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "не имеет тега"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "не имеет архивного номера"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "Название или содержимое включает"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "полнотекстовый запрос"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "больше похожих"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "имеет теги в"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "Тип правила"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "значение"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "Правило фильтрации"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "правила фильтрации"
-#: documents/models.py:521
-msgid "started"
-msgstr "запущено"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "неверное регулярное выражение: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Неверный цвет."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Тип файла %(type)s не поддерживается"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Обнаружена неверная переменная."
@@ -444,87 +556,87 @@ msgstr "Пароль"
msgid "Sign in"
msgstr "Вход"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Английский (США)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Белорусский"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Чешский"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Датский"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Немецкий"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Английский (Великобритании)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Испанский"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Французский"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Итальянский"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Люксембургский"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Датский"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Польский"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Португальский (Бразилия)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Португальский"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Румынский"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Русский"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Словенский"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Сербский"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Шведский"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Турецкий"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Китайский упрощенный"
diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po
index f1e408407..2320afcd0 100644
--- a/src/locale/sl_SI/LC_MESSAGES/django.po
+++ b/src/locale/sl_SI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-25 12:46\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"Language: sl_SI\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Katerakoli beseda"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Vse besede"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Točno ujemanje"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regularni izraz"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Fuzzy beseda"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Samodejno"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "ime"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "ujemanje"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritem ujemanja"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "brez razlikovanje velikosti črk"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "dopisnik"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "dopisniki"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "barva"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "je vhodna oznaka"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Označi to oznako kot vhodno oznako: vsi na novo obdelani dokumenti bodo označeni z vhodno oznako."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "oznaka"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "oznake"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "vrsta dokumenta"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "vrste dokumentov"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "pot"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "pot do shrambe"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "poti do shrambe"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Nešifrirano"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrirano z GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "naslov"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "vsebina"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Neobdelani besedilni podatki dokumenta. To polje se uporablja predvsem za iskanje."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "vrsta mime"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrolna vsota"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrolna vsota izvirnega dokumenta."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arhivska kontrolna vsota"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrolna vsota arhiviranega dokumenta."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "ustvarjeno"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "spremenjeno"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "vrsta shrambe"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "dodano"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "ime datoteke"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Trenutno ime dokumenta v shrambi"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "ime arhivske datoteke"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Trenutno ime arhivske datoteke v shrambi"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arhivska serijska številka"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Položaj tega dokumenta v vašem fizičnem arhivu dokumentov."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenti"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "razhroščevanje"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informacija"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "opozorilo"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "napaka"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritično"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "skupina"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "sporočilo"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivo"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "dnevnik"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "dnevniki"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "shranjeni pogled"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "shranjeni pogledi"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "uporabnik"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "prikaži na pregledni plošči"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "prikaži v stranski vrstici"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "polje za razvrščanje"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "razvrsti obratno"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "naslov vsebuje"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "vsebina vsebuje"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN je"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "dopisnik je"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "vrsta dokumenta je"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "je v prejetem"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ima oznako"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ima katero koli oznako"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "ustvarjeno pred"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "ustvarjeno po"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "leto nastanka"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "mesec nastanka"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dan nastanka"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "dodano pred"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "dodano po"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "spremenjeno pred"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "spremenjeno po"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "nima oznake"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "nima ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "naslov ali vsebina vsebujeta"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "polnobesedilna poizvedba"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "več takih"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "ima oznake"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "vrsta pravila"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "vrednost"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtriraj pravilo"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtriraj pravila"
-#: documents/models.py:521
-msgid "started"
-msgstr "zagnano"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Neveljaven splošen izraz: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Napačna barva."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s ni podprta"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Zaznani neveljavni znaki."
@@ -444,87 +556,87 @@ msgstr "Geslo"
msgid "Sign in"
msgstr "Prijava"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Angleščina (ZDA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Beloruščina"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Češčina"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danščina"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Nemščina"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Angleščina (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Španščina"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francoščina"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italijanščina"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luksemburški"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Nizozemščina"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Poljščina"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugalščina (Brazilija)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugalščina"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Romunščina"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ruščina"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovenščina"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Srbščina"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Švedščina"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turščina"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Poenostavljena kitajščina"
diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po
index ca01c8d1e..c7c5415de 100644
--- a/src/locale/sr_CS/LC_MESSAGES/django.po
+++ b/src/locale/sr_CS/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-04 23:55\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-12 13:08\n"
"Last-Translator: \n"
"Language-Team: Serbian (Latin)\n"
"Language: sr_CS\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenta"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Bilo koja reč"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Sve reči"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Tačno podudaranje"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Regularni izraz"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Fuzzy reč"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatski"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "naziv"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "poklapanje"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "algoritam podudaranja"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "bez razlike veliko/malo slovo"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korespodent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korespodenti"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "boja"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "je oznaka prijemnog sandučeta"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Označava ovu oznaku kao oznaku prijemnog sandučeta (inbox): Svi novoobrađeni dokumenti će biti označeni oznakama prijemnog sandučeta (inbox)."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "oznaka"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "oznake"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "tip dokumenta"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "tipovi dokumenta"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "putanja"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "putanja skladišta"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "putanja skladišta"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Nešifrovano"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrovano pomoću GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "naslov"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "sadržaj"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Neobrađeni tekstualni podaci dokumenta. Ovo se polje koristi prvenstveno za pretraživanje."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime tip"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrolna suma"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrolna suma originalnog dokumenta."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arhivni checksum"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrolna suma arhivnog dokumenta."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "kreirano"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "izmenjeno"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "tip skladišta"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "dodato"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "naziv fajla"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Trenutni naziv sačuvane datoteke"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "naziv fajla arhive"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Trenutni naziv arhivirane sačuvane datoteke"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr "originalno ime fajla"
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr "Originalni naziv fajla kada je otpremljen"
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arhivski serijski broj"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokumenta"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "okloni greške"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "informacija"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "upozorenje"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "grеška"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritično"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupa"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "poruka"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivo"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "log"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "logovi"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "sačuvani prikaz"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "sačuvani prikazi"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "korisnik"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "prikaži na kontrolnoj tabli"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "prikaži u bočnoj traci"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "polje za sortiranje"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "obrnuto sortiranje"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "naslov sadrži"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "sadržaj sadrži"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN je"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "korespodent je"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "tip dokumenta je"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "je u prijemnog sandučetu"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "ima oznaku"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "ima bilo koju oznaku"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "kreiran pre"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "kreiran posle"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "godina kreiranja je"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "mesec kreiranja je"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "dan kreiranja je"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "dodat pre"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "dodat posle"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "izmenjen pre"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "izmenjen posle"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "nema oznaku"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "nema ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "naslov i sadržaj sadrži"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "upit za ceo tekst"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "više ovakvih"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "ima oznake u"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr "ASN veći od"
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr "ASN manji od"
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr "putanja skladišta je"
+
+#: documents/models.py:422
msgid "rule type"
msgstr "tip pravila"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "vrednost"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filter pravilo"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filter pravila"
-#: documents/models.py:521
-msgid "started"
-msgstr "pokrenuto"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr "ID Zadatka"
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr "Celery ID za zadatak koji je pokrenut"
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr "Potvrđeno"
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr "Ako je zadatak potvrđen preko frontenda ili API-ja"
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr "Ime zadatka"
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr "Naziv fajla za koji je zadatak pokrenut"
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr "Naziv zadatka koji je bio pokrenut"
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr "Pozicioni argumenti zadatka"
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr "JSON prikaz pozicionih argumenata koji se koriste sa zadatkom"
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr "Argumenti zadatka"
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr "JSON prikaz imenovanih argumenata koji se koriste sa zadatkom"
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr "Stanje zadatka"
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr "Trenutno stanje zadatka koji se izvršava"
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr "Datum i vreme kreiranja"
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr "Polje datuma i vremena kada je rezultat zadatka kreiran u UTC"
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr "Datum i vreme početka"
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr "Polje datuma i vremena kada je zadatak pokrenut u UTC"
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr "Datum i vreme završetka"
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr "Polje datuma i vremena kada je zadatak završen u UTC"
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr "Podaci o rezultatu"
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr "Podaci koje vraća zadatak"
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr "Komentar za dokument"
+
+#: documents/models.py:642
+msgid "comment"
+msgstr "komentar"
+
+#: documents/models.py:643
+msgid "comments"
+msgstr "komentari"
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Nevažeći regularni izraz: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Nevažeća boja."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s nije podržana"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Otkrivena je nevažeća promenljiva."
@@ -444,87 +556,87 @@ msgstr "Lozinka"
msgid "Sign in"
msgstr "Prijavite se"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engleski (US)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Beloruski"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Češki"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danski"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Nemački"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engleski (UK)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Španski"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Francuski"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italijanski"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Luksemburški"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Holandski"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Poljski"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazil)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugalski"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumunski"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ruski"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovenački"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Srpski"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Švedski"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Turski"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Kineski pojednostavljen"
diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po
index 4ab73df08..32c79fec7 100644
--- a/src/locale/sv_SE/LC_MESSAGES/django.po
+++ b/src/locale/sv_SE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-08 22:07\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Dokument"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Valfritt ord"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Alla ord"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Exakt matchning"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Reguljära uttryck"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Ungefärligt ord"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Automatisk"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "namn"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "träff"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "matchande algoritm"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "är ej skiftlägeskänsligt"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "korrespondent"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "korrespondenter"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "färg"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "är inkorgsetikett"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Markerar denna etikett som en inkorgsetikett: Alla nyligen konsumerade dokument kommer att märkas med inkorgsetiketter."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etikett"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiketter"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "dokumenttyp"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "dokumenttyper"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Okrypterad"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "Krypterad med GNU Privacy Guard"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "titel"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "innehåll"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Dokumentets obearbetade textdata. Detta fält används främst för sökning."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "MIME-typ"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "kontrollsumma"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Kontrollsumman för originaldokumentet."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arkivera kontrollsumma"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Kontrollsumman för det arkiverade dokumentet."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "skapad"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "ändrad"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "lagringstyp"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "tillagd"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "filnamn"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Nuvarande filnamn i lagringsutrymmet"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "arkivfilnamn"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Nuvarande arkivfilnamn i lagringsutrymmet"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "serienummer (arkivering)"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Placeringen av detta dokument i ditt fysiska dokumentarkiv."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "dokument"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "dokument"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "felsök"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr ""
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "varning"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "fel"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritisk"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grupp"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "meddelande"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "nivå"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "logg"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "loggar"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "sparad vy"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "sparade vyer"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "användare"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "visa på kontrollpanelen"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "visa i sidofältet"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "sortera fält"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "sortera omvänt"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "titel innehåller"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "innehåll innehåller"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN är"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "korrespondent är"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "dokumenttyp är"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "är i inkorgen"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "har etikett"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "har någon etikett"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "skapad före"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "skapad efter"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "skapat år är"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "skapad månad är"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "skapad dag är"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "tillagd före"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "tillagd efter"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "ändrad före"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "ändrad efter"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "har inte etikett"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "har inte ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "titel eller innehåll innehåller"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "fulltextfråga"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "mer som detta"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr ""
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "regeltyp"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "värde"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtrera regel"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtrera regler"
-#: documents/models.py:521
-msgid "started"
+#: documents/models.py:536
+msgid "Task ID"
msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Ogiltigt reguljärt uttryck: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Ogiltig färg."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Filtypen %(type)s stöds inte"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr ""
@@ -444,87 +556,87 @@ msgstr "Lösenord"
msgid "Sign in"
msgstr "Logga in"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "Engelska (USA)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr ""
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr ""
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr ""
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Tyska"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "Engelska (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "Spanska"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Franska"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "Italienska"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr ""
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Holländska"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polska"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portugisiska (Brasilien)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portugisiska"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Rumänska"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Ryska"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr ""
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr ""
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "Svenska"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr ""
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr ""
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index 78b4d6f70..6e972d7fc 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-08-01 19:02\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "Belgeler"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "Herhangi bir kelime"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "Tüm Kelimeler"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "Tam eşleşme"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "Düzenli ifade"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "Fuzzy Kelime"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "Otomatik"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "ad"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "eşleme"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "eşleştirme algoritması"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "duyarsızdır"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "muhabir"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "muhabirler"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "renk"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "gelen kutu etiketidir"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Bu etiketi, gelen kutusu etiketi olarak işaretle: Yeni aktarılan tüm dokümanlar gelen kutusu etiketi ile etiketlendirileceklerdir."
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "etiket"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "etiketler"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "belge türü"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "belge türleri"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr ""
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr ""
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr ""
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "Şifresiz"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "GNU Gizlilik Koruması ile şifrelendirilmiştir"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "başlık"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "içerik"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Belgenin ham, yalnızca metin verileri. Bu alan öncelikle arama için kullanılır."
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime türü"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "sağlama toplamı"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "Orjinal belgenin sağlama toplamı."
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "arşiv sağlama toplamı"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "Arşivlenen belgenin sağlama toplamı."
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "oluşturuldu"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "değiştirilmiş"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "depolama türü"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "eklendi"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "dosya adı"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "Depolamadaki geçerli dosya adı"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "arşiv dosya adı"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "Depolamadaki geçerli arşiv dosya adı"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "arşiv seri numarası"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "Bu belgenin fiziksel belge arşivinizdeki posizyonu."
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "belge"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "belgeler"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "hata ayıklama"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "bilgi"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "uyarı"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "hata"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "kritik"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "grup"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "mesaj"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "seviye"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "günlük"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "günlükler"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "kaydedilen görünüm"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "kaydedilen görünümler"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "kullanıcı"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "kontrol paneli'nde göster"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "kenar çubuğunda göster"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "alanı sıralama"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "tersine sırala"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "başlık içerir"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "içerik içerir"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN ise"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "muhabir ise"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "belge türü ise"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "gelen kutusunun içerisindedir"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "etiketine sahip"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "herhangi bir etiketine sahip"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "bu tarihten önce oluşturuldu"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "bu tarihten sonra oluşturuldu"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "oluşturma yili ise"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "oluşturma ayı ise"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "oluşturma günü ise"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "bu tarihten önce eklendi"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "bu tarihten sonra eklendi"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "bu tarihten önce değiştirldi"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "bu tarihten sonra değiştirldi"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "etikete sahip değil"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "ASN'e sahip değil"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "başlik veya içerik içerir"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "tam metin sorgulama"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "buna benzer daha"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "içerisinde etiketine sahip"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "kural türü"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "değer"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "filtreleme kuralı"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "filtreleme kuralları"
-#: documents/models.py:521
-msgid "started"
-msgstr "başladı"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "Hatalı Düzenli İfade: %(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "Geçersiz renk."
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "Dosya türü %(type)s desteklenmiyor"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "Geçersiz değişken algılandı."
@@ -444,87 +556,87 @@ msgstr "Parola"
msgid "Sign in"
msgstr "Oturum aç"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "İngilizce (Birleşik Devletler)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "Belarusça"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "Çekçe"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "Danca"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "Almanca"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "İngilizce (GB)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "İspanyolca"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "Fransızca"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "İtalyanca"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "Lüksemburgca"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "Hollandaca"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "Polonyaca"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "Portekizce (Brezilya)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "Portekizce"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "Romence"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "Rusça"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "Slovakça"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "Sırpça"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "İsveççe"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "Türkçe"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "Basitleştirilmiş Çince"
diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po
index 2a76b6cf3..67fc56899 100644
--- a/src/locale/zh_CN/LC_MESSAGES/django.po
+++ b/src/locale/zh_CN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-08 14:11-0700\n"
-"PO-Revision-Date: 2022-07-15 04:02\n"
+"POT-Creation-Date: 2022-11-09 21:50+0000\n"
+"PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -21,378 +21,490 @@ msgstr ""
msgid "Documents"
msgstr "文档"
-#: documents/models.py:29
+#: documents/models.py:32
msgid "Any word"
msgstr "任意单词"
-#: documents/models.py:30
+#: documents/models.py:33
msgid "All words"
msgstr "所有单词"
-#: documents/models.py:31
+#: documents/models.py:34
msgid "Exact match"
msgstr "精确匹配"
-#: documents/models.py:32
+#: documents/models.py:35
msgid "Regular expression"
msgstr "正则表达式"
-#: documents/models.py:33
+#: documents/models.py:36
msgid "Fuzzy word"
msgstr "模糊单词"
-#: documents/models.py:34
+#: documents/models.py:37
msgid "Automatic"
msgstr "自动"
-#: documents/models.py:37 documents/models.py:354 paperless_mail/models.py:16
+#: documents/models.py:40 documents/models.py:367 paperless_mail/models.py:16
#: paperless_mail/models.py:80
msgid "name"
msgstr "名称"
-#: documents/models.py:39
+#: documents/models.py:42
msgid "match"
msgstr "匹配"
-#: documents/models.py:42
+#: documents/models.py:45
msgid "matching algorithm"
msgstr "匹配算法"
-#: documents/models.py:47
+#: documents/models.py:50
msgid "is insensitive"
msgstr "忽略大小写"
-#: documents/models.py:60 documents/models.py:115
+#: documents/models.py:63 documents/models.py:118
msgid "correspondent"
msgstr "联系人"
-#: documents/models.py:61
+#: documents/models.py:64
msgid "correspondents"
msgstr "联系人"
-#: documents/models.py:66
+#: documents/models.py:69
msgid "color"
msgstr "颜色"
-#: documents/models.py:69
+#: documents/models.py:72
msgid "is inbox tag"
msgstr "收件箱标签"
-#: documents/models.py:72
+#: documents/models.py:75
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "将此标签标记为收件箱标签:所有新处理的文档将被标记为收件箱标签。"
-#: documents/models.py:78
+#: documents/models.py:81
msgid "tag"
msgstr "标签"
-#: documents/models.py:79 documents/models.py:153
+#: documents/models.py:82 documents/models.py:156
msgid "tags"
msgstr "标签"
-#: documents/models.py:84 documents/models.py:135
+#: documents/models.py:87 documents/models.py:138
msgid "document type"
msgstr "文档类型"
-#: documents/models.py:85
+#: documents/models.py:88
msgid "document types"
msgstr "文档类型"
-#: documents/models.py:90
+#: documents/models.py:93
msgid "path"
msgstr "路径"
-#: documents/models.py:96 documents/models.py:124
+#: documents/models.py:99 documents/models.py:127
msgid "storage path"
msgstr "保存路径"
-#: documents/models.py:97
+#: documents/models.py:100
msgid "storage paths"
msgstr "保存路径"
-#: documents/models.py:105
+#: documents/models.py:108
msgid "Unencrypted"
msgstr "未加密"
-#: documents/models.py:106
+#: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard"
msgstr "使用 GNU 隐私防护(GPG)加密"
-#: documents/models.py:127
+#: documents/models.py:130
msgid "title"
msgstr "标题"
-#: documents/models.py:139
+#: documents/models.py:142 documents/models.py:611
msgid "content"
msgstr "内容"
-#: documents/models.py:142
+#: documents/models.py:145
msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "文档的原始、纯文本的数据。这个字段主要用于搜索。"
-#: documents/models.py:147
+#: documents/models.py:150
msgid "mime type"
msgstr "mime 类型"
-#: documents/models.py:157
+#: documents/models.py:160
msgid "checksum"
msgstr "校验和"
-#: documents/models.py:161
+#: documents/models.py:164
msgid "The checksum of the original document."
msgstr "原始文档的校验和。"
-#: documents/models.py:165
+#: documents/models.py:168
msgid "archive checksum"
msgstr "存档校验和"
-#: documents/models.py:170
+#: documents/models.py:173
msgid "The checksum of the archived document."
msgstr "已归档文档的校验和。"
-#: documents/models.py:173 documents/models.py:335 documents/models.py:520
+#: documents/models.py:176 documents/models.py:348 documents/models.py:617
msgid "created"
msgstr "已创建"
-#: documents/models.py:176
+#: documents/models.py:179
msgid "modified"
msgstr "已修改"
-#: documents/models.py:183
+#: documents/models.py:186
msgid "storage type"
msgstr "存储类型"
-#: documents/models.py:191
+#: documents/models.py:194
msgid "added"
msgstr "已添加"
-#: documents/models.py:198
+#: documents/models.py:201
msgid "filename"
msgstr "文件名"
-#: documents/models.py:204
+#: documents/models.py:207
msgid "Current filename in storage"
msgstr "当前存储中的文件名"
-#: documents/models.py:208
+#: documents/models.py:211
msgid "archive filename"
msgstr "归档文件名"
-#: documents/models.py:214
+#: documents/models.py:217
msgid "Current archive filename in storage"
msgstr "当前存储中的归档文件名"
-#: documents/models.py:218
+#: documents/models.py:221
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:227
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:231
msgid "archive serial number"
msgstr "归档序列号"
-#: documents/models.py:224
+#: documents/models.py:237
msgid "The position of this document in your physical document archive."
msgstr "此文档在您的物理文档归档中的位置。"
-#: documents/models.py:230
+#: documents/models.py:243 documents/models.py:628
msgid "document"
msgstr "文档"
-#: documents/models.py:231
+#: documents/models.py:244
msgid "documents"
msgstr "文档"
-#: documents/models.py:318
+#: documents/models.py:331
msgid "debug"
msgstr "调试"
-#: documents/models.py:319
+#: documents/models.py:332
msgid "information"
msgstr "信息"
-#: documents/models.py:320
+#: documents/models.py:333
msgid "warning"
msgstr "警告"
-#: documents/models.py:321
+#: documents/models.py:334
msgid "error"
msgstr "错误"
-#: documents/models.py:322
+#: documents/models.py:335
msgid "critical"
msgstr "严重"
-#: documents/models.py:325
+#: documents/models.py:338
msgid "group"
msgstr "用户组"
-#: documents/models.py:327
+#: documents/models.py:340
msgid "message"
msgstr "消息"
-#: documents/models.py:330
+#: documents/models.py:343
msgid "level"
msgstr "等级"
-#: documents/models.py:339
+#: documents/models.py:352
msgid "log"
msgstr "日志"
-#: documents/models.py:340
+#: documents/models.py:353
msgid "logs"
msgstr "日志"
-#: documents/models.py:350 documents/models.py:403
+#: documents/models.py:363 documents/models.py:419
msgid "saved view"
msgstr "保存的视图"
-#: documents/models.py:351
+#: documents/models.py:364
msgid "saved views"
msgstr "保存的视图"
-#: documents/models.py:353
+#: documents/models.py:366 documents/models.py:637
msgid "user"
msgstr "用户"
-#: documents/models.py:357
+#: documents/models.py:370
msgid "show on dashboard"
msgstr "在仪表盘显示"
-#: documents/models.py:360
+#: documents/models.py:373
msgid "show in sidebar"
msgstr "在侧边栏显示"
-#: documents/models.py:364
+#: documents/models.py:377
msgid "sort field"
msgstr "排序字段"
-#: documents/models.py:369
+#: documents/models.py:382
msgid "sort reverse"
msgstr "反向排序"
-#: documents/models.py:374
+#: documents/models.py:387
msgid "title contains"
msgstr "标题包含"
-#: documents/models.py:375
+#: documents/models.py:388
msgid "content contains"
msgstr "内容包含"
-#: documents/models.py:376
+#: documents/models.py:389
msgid "ASN is"
msgstr "ASN 为"
-#: documents/models.py:377
+#: documents/models.py:390
msgid "correspondent is"
msgstr "联系人是"
-#: documents/models.py:378
+#: documents/models.py:391
msgid "document type is"
msgstr "文档类型是"
-#: documents/models.py:379
+#: documents/models.py:392
msgid "is in inbox"
msgstr "在收件箱中"
-#: documents/models.py:380
+#: documents/models.py:393
msgid "has tag"
msgstr "有标签"
-#: documents/models.py:381
+#: documents/models.py:394
msgid "has any tag"
msgstr "有任意标签"
-#: documents/models.py:382
+#: documents/models.py:395
msgid "created before"
msgstr "在此时间之前创建"
-#: documents/models.py:383
+#: documents/models.py:396
msgid "created after"
msgstr "在此时间之后创建"
-#: documents/models.py:384
+#: documents/models.py:397
msgid "created year is"
msgstr "创建年份是"
-#: documents/models.py:385
+#: documents/models.py:398
msgid "created month is"
msgstr "创建月份是"
-#: documents/models.py:386
+#: documents/models.py:399
msgid "created day is"
msgstr "创建日期是"
-#: documents/models.py:387
+#: documents/models.py:400
msgid "added before"
msgstr "添加早于"
-#: documents/models.py:388
+#: documents/models.py:401
msgid "added after"
msgstr "添加晚于"
-#: documents/models.py:389
+#: documents/models.py:402
msgid "modified before"
msgstr "修改早于"
-#: documents/models.py:390
+#: documents/models.py:403
msgid "modified after"
msgstr "修改晚于"
-#: documents/models.py:391
+#: documents/models.py:404
msgid "does not have tag"
msgstr "没有标签"
-#: documents/models.py:392
+#: documents/models.py:405
msgid "does not have ASN"
msgstr "没有 ASN"
-#: documents/models.py:393
+#: documents/models.py:406
msgid "title or content contains"
msgstr "标题或内容包含"
-#: documents/models.py:394
+#: documents/models.py:407
msgid "fulltext query"
msgstr "全文检索"
-#: documents/models.py:395
+#: documents/models.py:408
msgid "more like this"
msgstr "更多类似内容"
-#: documents/models.py:396
+#: documents/models.py:409
msgid "has tags in"
msgstr "有标签包含于"
-#: documents/models.py:406
+#: documents/models.py:410
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:411
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:412
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:422
msgid "rule type"
msgstr "规则类型"
-#: documents/models.py:408
+#: documents/models.py:424
msgid "value"
msgstr "值"
-#: documents/models.py:411
+#: documents/models.py:427
msgid "filter rule"
msgstr "过滤规则"
-#: documents/models.py:412
+#: documents/models.py:428
msgid "filter rules"
msgstr "过滤规则"
-#: documents/models.py:521
-msgid "started"
-msgstr "已开始"
+#: documents/models.py:536
+msgid "Task ID"
+msgstr ""
-#: documents/serialisers.py:70
+#: documents/models.py:537
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:542
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:543
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:549 documents/models.py:556
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:550
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:557
+msgid "Name of the Task which was run"
+msgstr ""
+
+#: documents/models.py:562
+msgid "Task Positional Arguments"
+msgstr ""
+
+#: documents/models.py:564
+msgid "JSON representation of the positional arguments used with the task"
+msgstr ""
+
+#: documents/models.py:569
+msgid "Task Named Arguments"
+msgstr ""
+
+#: documents/models.py:571
+msgid "JSON representation of the named arguments used with the task"
+msgstr ""
+
+#: documents/models.py:578
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:579
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:584
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:585
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:590
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:591
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:596
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:602
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:604
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:613
+msgid "Comment for the document"
+msgstr ""
+
+#: documents/models.py:642
+msgid "comment"
+msgstr ""
+
+#: documents/models.py:643
+msgid "comments"
+msgstr ""
+
+#: documents/serialisers.py:72
#, python-format
msgid "Invalid regular expression: %(error)s"
msgstr "无效的正则表达式:%(error)s"
-#: documents/serialisers.py:191
+#: documents/serialisers.py:193
msgid "Invalid color."
msgstr "无效的颜色"
-#: documents/serialisers.py:515
+#: documents/serialisers.py:518
#, python-format
msgid "File type %(type)s not supported"
msgstr "不支持文件类型 %(type)s"
-#: documents/serialisers.py:596
+#: documents/serialisers.py:599
msgid "Invalid variable detected."
msgstr "检测到无效变量。"
@@ -444,87 +556,87 @@ msgstr "密码"
msgid "Sign in"
msgstr "登录"
-#: paperless/settings.py:339
+#: paperless/settings.py:378
msgid "English (US)"
msgstr "英语(美国)"
-#: paperless/settings.py:340
+#: paperless/settings.py:379
msgid "Belarusian"
msgstr "白俄罗斯语"
-#: paperless/settings.py:341
+#: paperless/settings.py:380
msgid "Czech"
msgstr "捷克语"
-#: paperless/settings.py:342
+#: paperless/settings.py:381
msgid "Danish"
msgstr "丹麦语"
-#: paperless/settings.py:343
+#: paperless/settings.py:382
msgid "German"
msgstr "德语"
-#: paperless/settings.py:344
+#: paperless/settings.py:383
msgid "English (GB)"
msgstr "英语(英国)"
-#: paperless/settings.py:345
+#: paperless/settings.py:384
msgid "Spanish"
msgstr "西班牙语"
-#: paperless/settings.py:346
+#: paperless/settings.py:385
msgid "French"
msgstr "法语"
-#: paperless/settings.py:347
+#: paperless/settings.py:386
msgid "Italian"
msgstr "意大利语"
-#: paperless/settings.py:348
+#: paperless/settings.py:387
msgid "Luxembourgish"
msgstr "卢森堡语"
-#: paperless/settings.py:349
+#: paperless/settings.py:388
msgid "Dutch"
msgstr "荷兰语"
-#: paperless/settings.py:350
+#: paperless/settings.py:389
msgid "Polish"
msgstr "波兰语"
-#: paperless/settings.py:351
+#: paperless/settings.py:390
msgid "Portuguese (Brazil)"
msgstr "葡萄牙语 (巴西)"
-#: paperless/settings.py:352
+#: paperless/settings.py:391
msgid "Portuguese"
msgstr "葡萄牙语"
-#: paperless/settings.py:353
+#: paperless/settings.py:392
msgid "Romanian"
msgstr "罗马尼亚语"
-#: paperless/settings.py:354
+#: paperless/settings.py:393
msgid "Russian"
msgstr "俄语"
-#: paperless/settings.py:355
+#: paperless/settings.py:394
msgid "Slovenian"
msgstr "斯洛语尼亚语"
-#: paperless/settings.py:356
+#: paperless/settings.py:395
msgid "Serbian"
msgstr "塞尔维亚语"
-#: paperless/settings.py:357
+#: paperless/settings.py:396
msgid "Swedish"
msgstr "瑞典语"
-#: paperless/settings.py:358
+#: paperless/settings.py:397
msgid "Turkish"
msgstr "土耳其语"
-#: paperless/settings.py:359
+#: paperless/settings.py:398
msgid "Chinese Simplified"
msgstr "简体中文"
diff --git a/src/paperless/version.py b/src/paperless/version.py
index d196c358d..7175d7c4b 100644
--- a/src/paperless/version.py
+++ b/src/paperless/version.py
@@ -1,7 +1,7 @@
from typing import Final
from typing import Tuple
-__version__: Final[Tuple[int, int, int]] = (1, 9, 2)
+__version__: Final[Tuple[int, int, int]] = (1, 10, 0)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
diff --git a/src/paperless_tesseract/checks.py b/src/paperless_tesseract/checks.py
index 99780cad4..c63761f31 100644
--- a/src/paperless_tesseract/checks.py
+++ b/src/paperless_tesseract/checks.py
@@ -1,3 +1,4 @@
+import shutil
import subprocess
from django.conf import settings
@@ -7,10 +8,16 @@ from django.core.checks import Warning
def get_tesseract_langs():
- with subprocess.Popen(["tesseract", "--list-langs"], stdout=subprocess.PIPE) as p:
- stdout, stderr = p.communicate()
+ proc = subprocess.run(
+ [shutil.which("tesseract"), "--list-langs"],
+ capture_output=True,
+ )
- return stdout.decode().strip().split("\n")[1:]
+ # Decode bytes to string, split on newlines, trim out the header
+ proc_lines = proc.stdout.decode("utf8", errors="ignore").strip().split("\n")[1:]
+
+ # Replace _ with - to convert two part languages to the expected code
+ return [x.replace("_", "-") for x in proc_lines]
@register()
diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py
index 405df07ce..bde2ad25e 100644
--- a/src/paperless_tesseract/parsers.py
+++ b/src/paperless_tesseract/parsers.py
@@ -66,6 +66,7 @@ class RasterisedDocumentParser(DocumentParser):
"image/tiff",
"image/bmp",
"image/gif",
+ "image/webp",
]
def has_alpha(self, image):
@@ -95,7 +96,13 @@ class RasterisedDocumentParser(DocumentParser):
return None
def extract_text(self, sidecar_file, pdf_file):
- if sidecar_file and os.path.isfile(sidecar_file):
+ # When re-doing OCR, the sidecar contains ONLY the new text, not
+ # the whole text, so do not utilize it in that case
+ if (
+ sidecar_file is not None
+ and os.path.isfile(sidecar_file)
+ and settings.OCR_MODE != "redo"
+ ):
with open(sidecar_file) as f:
text = f.read()
@@ -142,7 +149,7 @@ class RasterisedDocumentParser(DocumentParser):
"input_file": input_file,
"output_file": output_file,
# need to use threads, since this will be run in daemonized
- # processes by django-q.
+ # processes via the task library.
"use_threads": True,
"jobs": settings.THREADS_PER_WORKER,
"language": settings.OCR_LANGUAGE,
@@ -165,9 +172,11 @@ class RasterisedDocumentParser(DocumentParser):
if settings.OCR_MODE == "redo":
ocrmypdf_args["clean"] = True
else:
+ # --clean-final is not compatible with --redo-ocr
ocrmypdf_args["clean_final"] = True
- if settings.OCR_DESKEW and not settings.OCR_MODE == "redo":
+ if settings.OCR_DESKEW and settings.OCR_MODE != "redo":
+ # --deskew is not compatible with --redo-ocr
ocrmypdf_args["deskew"] = True
if settings.OCR_ROTATE_PAGES:
@@ -263,7 +272,7 @@ class RasterisedDocumentParser(DocumentParser):
# Either no text was in the original or there should be an archive
# file created, so OCR the file and create an archive with any
- # test located via OCR
+ # text located via OCR
import ocrmypdf
from ocrmypdf import InputFileError, EncryptedPdfError
diff --git a/src/paperless_tesseract/signals.py b/src/paperless_tesseract/signals.py
index 85f2cab9f..c4fd1e039 100644
--- a/src/paperless_tesseract/signals.py
+++ b/src/paperless_tesseract/signals.py
@@ -15,5 +15,6 @@ def tesseract_consumer_declaration(sender, **kwargs):
"image/tiff": ".tif",
"image/gif": ".gif",
"image/bmp": ".bmp",
+ "image/webp": ".webp",
},
}
diff --git a/src/paperless_tesseract/tests/samples/document.webp b/src/paperless_tesseract/tests/samples/document.webp
new file mode 100755
index 000000000..c19ba2980
Binary files /dev/null and b/src/paperless_tesseract/tests/samples/document.webp differ
diff --git a/src/paperless_tesseract/tests/samples/single-page-mixed.pdf b/src/paperless_tesseract/tests/samples/single-page-mixed.pdf
new file mode 100644
index 000000000..2281fd389
Binary files /dev/null and b/src/paperless_tesseract/tests/samples/single-page-mixed.pdf differ
diff --git a/src/paperless_tesseract/tests/test_parser.py b/src/paperless_tesseract/tests/test_parser.py
index 858cc7701..a0550bde9 100644
--- a/src/paperless_tesseract/tests/test_parser.py
+++ b/src/paperless_tesseract/tests/test_parser.py
@@ -37,6 +37,9 @@ class FakeImageFile(ContextManager):
class TestParser(DirectoriesMixin, TestCase):
+
+ SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples")
+
def assertContainsStrings(self, content, strings):
# Asserts that all strings appear in content, in the given order.
indices = []
@@ -47,14 +50,18 @@ class TestParser(DirectoriesMixin, TestCase):
self.fail(f"'{s}' is not in '{content}'")
self.assertListEqual(indices, sorted(indices))
- text_cases = [
- ("simple string", "simple string"),
- ("simple newline\n testing string", "simple newline\ntesting string"),
- ("utf-8 строка с пробелами в конце ", "utf-8 строка с пробелами в конце"),
- ]
-
def test_post_process_text(self):
- for source, result in self.text_cases:
+
+ text_cases = [
+ ("simple string", "simple string"),
+ ("simple newline\n testing string", "simple newline\ntesting string"),
+ (
+ "utf-8 строка с пробелами в конце ",
+ "utf-8 строка с пробелами в конце",
+ ),
+ ]
+
+ for source, result in text_cases:
actual_result = post_process_text(source)
self.assertEqual(
result,
@@ -66,8 +73,6 @@ class TestParser(DirectoriesMixin, TestCase):
),
)
- SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples")
-
def test_get_text_from_pdf(self):
parser = RasterisedDocumentParser(uuid.uuid4())
text = parser.extract_text(
@@ -461,6 +466,45 @@ class TestParser(DirectoriesMixin, TestCase):
self.assertIn("[OCR skipped on page(s) 4-6]", sidecar)
+ @override_settings(OCR_MODE="redo")
+ def test_single_page_mixed(self):
+ """
+ GIVEN:
+ - File with some text contained in images and some in text layer
+ - Text and images are mixed on the same page
+ - OCR mode set to redo
+ WHEN:
+ - Document is parsed
+ THEN:
+ - Text from images is extracted
+ - Full content of the file is parsed (not just the image text)
+ - An archive file is created with the OCRd text and the original text
+ """
+ parser = RasterisedDocumentParser(None)
+ parser.parse(
+ os.path.join(self.SAMPLE_FILES, "single-page-mixed.pdf"),
+ "application/pdf",
+ )
+ self.assertIsNotNone(parser.archive_path)
+ self.assertTrue(os.path.isfile(parser.archive_path))
+ self.assertContainsStrings(
+ parser.get_text().lower(),
+ [
+ "this is some normal text, present on page 1 of the document.",
+ "this is some text, but in an image, also on page 1.",
+ "this is further text on page 1.",
+ ],
+ )
+
+ with open(os.path.join(parser.tempdir, "sidecar.txt")) as f:
+ sidecar = f.read().lower()
+
+ self.assertIn("this is some text, but in an image, also on page 1.", sidecar)
+ self.assertNotIn(
+ "this is some normal text, present on page 1 of the document.",
+ sidecar,
+ )
+
@override_settings(OCR_MODE="skip_noarchive")
def test_multi_page_mixed_no_archive(self):
"""
@@ -553,23 +597,34 @@ class TestParserFileTypes(DirectoriesMixin, TestCase):
parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.bmp"), "image/bmp")
self.assertTrue(os.path.isfile(parser.archive_path))
- self.assertTrue("this is a test document" in parser.get_text().lower())
+ self.assertIn("this is a test document", parser.get_text().lower())
def test_jpg(self):
parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.jpg"), "image/jpeg")
self.assertTrue(os.path.isfile(parser.archive_path))
- self.assertTrue("this is a test document" in parser.get_text().lower())
+ self.assertIn("this is a test document", parser.get_text().lower())
@override_settings(OCR_IMAGE_DPI=200)
def test_gif(self):
parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.gif"), "image/gif")
self.assertTrue(os.path.isfile(parser.archive_path))
- self.assertTrue("this is a test document" in parser.get_text().lower())
+ self.assertIn("this is a test document", parser.get_text().lower())
def test_tiff(self):
parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.tif"), "image/tiff")
self.assertTrue(os.path.isfile(parser.archive_path))
- self.assertTrue("this is a test document" in parser.get_text().lower())
+ self.assertIn("this is a test document", parser.get_text().lower())
+
+ @override_settings(OCR_IMAGE_DPI=72)
+ def test_webp(self):
+ parser = RasterisedDocumentParser(None)
+ parser.parse(os.path.join(self.SAMPLE_FILES, "document.webp"), "image/webp")
+ self.assertTrue(os.path.isfile(parser.archive_path))
+ # OCR consistent mangles this space, oh well
+ self.assertIn(
+ "this is awebp document, created 11/14/2022.",
+ parser.get_text().lower(),
+ )