Merge remote-tracking branch 'paperless/dev' into feature-consume-eml

This commit is contained in:
phail 2022-11-30 10:10:57 +01:00
commit 47c88a6bdd
81 changed files with 8617 additions and 7021 deletions

View File

@ -42,7 +42,15 @@ body:
id: logs id: logs
attributes: attributes:
label: Webserver logs 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 render: bash
- type: input - type: input
id: version id: version

View File

@ -81,15 +81,6 @@ jobs:
matrix: matrix:
python-version: ['3.8', '3.9', '3.10'] python-version: ['3.8', '3.9', '3.10']
fail-fast: false 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: env:
# Enable Tika end to end testing # Enable Tika end to end testing
TIKA_LIVE: 1 TIKA_LIVE: 1
@ -107,6 +98,11 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
fetch-depth: 0 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 name: Install pipenv
run: | run: |
@ -158,6 +154,12 @@ jobs:
run: | run: |
cd src/ cd src/
pipenv run coveralls --service=github 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: tests-frontend:
name: "Tests Frontend" name: "Tests Frontend"
@ -482,10 +484,9 @@ jobs:
- -
name: Upload release archive name: Upload release archive
id: upload-release-asset id: upload-release-asset
uses: actions/upload-release-asset@v1 uses: shogo82148/actions-upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }}
upload_url: ${{ steps.create-release.outputs.upload_url }} upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./paperless-ngx.tar.xz asset_path: ./paperless-ngx.tar.xz
asset_name: paperless-ngx-${{ steps.get_version.outputs.version }}.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` CURRENT_CHANGELOG=`tail --lines +2 changelog.md`
echo -e "$CURRENT_CHANGELOG" >> changelog-new.md echo -e "$CURRENT_CHANGELOG" >> changelog-new.md
mv changelog-new.md changelog.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.name "github-actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git commit -am "Changelog ${{ needs.publish-release.outputs.version }} - GHA" git commit -am "Changelog ${{ needs.publish-release.outputs.version }} - GHA"

View File

@ -51,8 +51,8 @@ repos:
hooks: hooks:
- id: add-trailing-comma - id: add-trailing-comma
exclude: "(migrations)" exclude: "(migrations)"
- repo: https://gitlab.com/pycqa/flake8 - repo: https://github.com/PyCQA/flake8
rev: 3.9.2 rev: 5.0.4
hooks: hooks:
- id: flake8 - id: flake8
files: ^src/ files: ^src/
@ -63,7 +63,7 @@ repos:
hooks: hooks:
- id: black - id: black
- repo: https://github.com/asottile/pyupgrade - repo: https://github.com/asottile/pyupgrade
rev: v3.1.0 rev: v3.2.2
hooks: hooks:
- id: pyupgrade - id: pyupgrade
exclude: "(migrations)" exclude: "(migrations)"

View File

@ -72,34 +72,37 @@ COPY --from=jbig2enc-builder /usr/src/jbig2enc/src/*.h /usr/local/include/
# Packages need for running # Packages need for running
ARG RUNTIME_PACKAGES="\ ARG RUNTIME_PACKAGES="\
# Python
python3 \
python3-pip \
python3-setuptools \
# General utils
curl \ curl \
file \ # Docker specific
gosu \
# Timezones support
tzdata \
# fonts for text file thumbnail generation # fonts for text file thumbnail generation
fonts-liberation \ fonts-liberation \
gettext \ gettext \
ghostscript \ ghostscript \
gnupg \ gnupg \
gosu \
icc-profiles-free \ icc-profiles-free \
imagemagick \ imagemagick \
media-types \ # Image processing
liblept5 \ liblept5 \
libpq5 \
libxml2 \
liblcms2-2 \ liblcms2-2 \
libtiff5 \ libtiff5 \
libxslt1.1 \
libfreetype6 \ libfreetype6 \
libwebp6 \ libwebp6 \
libopenjp2-7 \ libopenjp2-7 \
libimagequant0 \ libimagequant0 \
libraqm0 \ libraqm0 \
libgnutls30 \
libjpeg62-turbo \ libjpeg62-turbo \
python3 \ # PostgreSQL
python3-pip \ libpq5 \
python3-setuptools \
postgresql-client \ postgresql-client \
# MySQL / MariaDB
mariadb-client \ mariadb-client \
# For Numpy # For Numpy
libatlas3-base \ libatlas3-base \
@ -110,17 +113,23 @@ ARG RUNTIME_PACKAGES="\
tesseract-ocr-fra \ tesseract-ocr-fra \
tesseract-ocr-ita \ tesseract-ocr-ita \
tesseract-ocr-spa \ tesseract-ocr-spa \
# Suggested for OCRmyPDF
pngquant \
# Suggested for pikepdf
jbig2dec \
tzdata \
unpaper \ unpaper \
pngquant \
# pikepdf / qpdf
jbig2dec \
libxml2 \
libxslt1.1 \
libgnutls30 \
# Mime type detection # Mime type detection
file \
libmagic1 \
media-types \
zlib1g \ zlib1g \
# Barcode splitter # Barcode splitter
libzbar0 \ libzbar0 \
poppler-utils" poppler-utils \
# RapidFuzz on armv7
libatomic1"
# Install basic runtime packages. # Install basic runtime packages.
# These change very infrequently # These change very infrequently

View File

@ -2,7 +2,7 @@
[![Crowdin](https://badges.crowdin.net/paperless-ngx/localized.svg)](https://crowdin.com/project/paperless-ngx) [![Crowdin](https://badges.crowdin.net/paperless-ngx/localized.svg)](https://crowdin.com/project/paperless-ngx)
[![Documentation Status](https://readthedocs.org/projects/paperless-ngx/badge/?version=latest)](https://paperless-ngx.readthedocs.io/en/latest/?badge=latest) [![Documentation Status](https://readthedocs.org/projects/paperless-ngx/badge/?version=latest)](https://paperless-ngx.readthedocs.io/en/latest/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/github/paperless-ngx/paperless-ngx/badge.svg?branch=master)](https://coveralls.io/github/paperless-ngx/paperless-ngx?branch=master) [![Coverage Status](https://coveralls.io/repos/github/paperless-ngx/paperless-ngx/badge.svg?branch=master)](https://coveralls.io/github/paperless-ngx/paperless-ngx?branch=master)
[![Chat on Matrix](https://matrix.to/img/matrix-badge.svg)](https://matrix.to/#/#paperless:adnidor.de) [![Chat on Matrix](https://matrix.to/img/matrix-badge.svg)](https://matrix.to/#/%23paperlessngx%3Amatrix.org)
<p align="center"> <p align="center">
<img src="https://github.com/paperless-ngx/paperless-ngx/raw/main/resources/logo/web/png/Black%20logo%20-%20no%20background.png#gh-light-mode-only" width="50%" /> <img src="https://github.com/paperless-ngx/paperless-ngx/raw/main/resources/logo/web/png/Black%20logo%20-%20no%20background.png#gh-light-mode-only" width="50%" />
@ -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 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. - [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. - [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. These projects also exist, but their status and compatibility with paperless-ngx is unknown.

View File

@ -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

View File

@ -77,8 +77,8 @@ services:
PAPERLESS_REDIS: redis://broker:6379 PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBENGINE: mariadb PAPERLESS_DBENGINE: mariadb
PAPERLESS_DBHOST: db PAPERLESS_DBHOST: db
PAPERLESS_DBUSER: paperless PAPERLESS_DBUSER: paperless # only needed if non-default username
PAPERLESS_DBPASSWORD: paperless PAPERLESS_DBPASS: paperless # only needed if non-default password
PAPERLESS_DBPORT: 3306 PAPERLESS_DBPORT: 3306
PAPERLESS_TIKA_ENABLED: 1 PAPERLESS_TIKA_ENABLED: 1
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000

View File

@ -71,8 +71,8 @@ services:
PAPERLESS_REDIS: redis://broker:6379 PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBENGINE: mariadb PAPERLESS_DBENGINE: mariadb
PAPERLESS_DBHOST: db PAPERLESS_DBHOST: db
PAPERLESS_DBUSER: paperless PAPERLESS_DBUSER: paperless # only needed if non-default username
PAPERLESS_DBPASSWORD: paperless PAPERLESS_DBPASS: paperless # only needed if non-default password
PAPERLESS_DBPORT: 3306 PAPERLESS_DBPORT: 3306

View File

@ -137,8 +137,7 @@ initialize() {
install_languages() { install_languages() {
echo "Installing languages..." echo "Installing languages..."
local -r langs="$1" read -ra langs <<<"$1"
read -ra langs <<<"$langs"
# Check that it is not empty # Check that it is not empty
if [ ${#langs[@]} -eq 0 ]; then if [ ${#langs[@]} -eq 0 ]; then

View File

@ -447,6 +447,14 @@ command:
The command takes no arguments and processes all your mail accounts and rules. 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: .. _utilities-archiver:
Creating archived documents Creating archived documents

View File

@ -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, 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 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 .. _pdf2pdfocr.py: https://github.com/LeoFCardoso/pdf2pdfocr
.. _advanced-post_consume_script: .. _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 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 Docker
------ ------
Assumed you have ``/home/foo/paperless-ngx/scripts/post-consumption-example.sh``. Assumed you have ``/home/foo/paperless-ngx/scripts/post-consumption-example.sh``.
@ -417,3 +424,24 @@ For example, using Docker Compose:
# ... # ...
volumes: volumes:
- /path/to/my/scripts:/custom-cont-init.d:ro - /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 <table_name> 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 <db_name> CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;``

View File

@ -1,7 +1,189 @@
# Changelog # 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
<details>
<summary>31 changes</summary>
- 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))
</details>
### 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 ## paperless-ngx 1.9.1
### Notes
- Version 1.9.1 incorrectly displays the version string as 1.9.0
### Bug Fixes ### Bug Fixes
- Bugfix: Fixes missing OCR mode skip_noarchive [@stumpylog](https://github.com/stumpylog) ([#1645](https://github.com/paperless-ngx/paperless-ngx/pull/1645)) - Bugfix: Fixes missing OCR mode skip_noarchive [@stumpylog](https://github.com/stumpylog) ([#1645](https://github.com/paperless-ngx/paperless-ngx/pull/1645))

View File

@ -38,8 +38,14 @@ PAPERLESS_REDIS=<url>
PAPERLESS_DBENGINE=<engine_name> PAPERLESS_DBENGINE=<engine_name>
Optional, gives the ability to choose Postgres or MariaDB for database engine. Optional, gives the ability to choose Postgres or MariaDB for database engine.
Available options are `postgresql` and `mariadb`. Available options are `postgresql` and `mariadb`.
Default is `postgresql`. Default is `postgresql`.
.. warning::
Using MariaDB comes with some caveats. See :ref:`advanced-mysql-caveats` for details.
PAPERLESS_DBHOST=<hostname> PAPERLESS_DBHOST=<hostname>
By default, sqlite is used as the database backend. This can be changed here. By default, sqlite is used as the database backend. This can be changed here.

View File

@ -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. 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 <https://github.com/paperless-ngx/paperless-ngx/tree/main/docker/compose>`_
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: .. _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 Moving your data from SQLite to PostgreSQL or MySQL/MariaDB is done via executing a series of django
management commands as below. management commands as below. The commands below use PostgreSQL, but are applicable to MySQL/MariaDB
with the
.. caution:: .. caution::
@ -671,6 +714,11 @@ management commands as below.
and filenames (1024 characters). If you have data in these fields that surpasses these 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. 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. 1. Stop paperless, if it is running.
2. Tell paperless to use PostgreSQL: 2. Tell paperless to use PostgreSQL:

View File

@ -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, 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 try tweaking the ``PAPERLESS_DB_TIMEOUT`` setting to allow more time for the database to unlock. This may have
minor performance implications. 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.

View File

@ -1957,8 +1957,8 @@
<context context-type="linenumber">391</context> <context context-type="linenumber">391</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="7662620858973651688" datatype="html"> <trans-unit id="5729001209753056399" datatype="html">
<source>Redo OCR operation will begin in the background.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context> <context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
<context context-type="linenumber">494</context> <context context-type="linenumber">494</context>

View File

@ -17,7 +17,7 @@
</svg> </svg>
<input class="form-control form-control-sm" type="text" placeholder="Search documents" aria-label="Search" <input class="form-control form-control-sm" type="text" placeholder="Search documents" aria-label="Search"
[formControl]="searchField" [ngbTypeahead]="searchAutoComplete" (keyup)="searchFieldKeyup($event)" (selectItem)="itemSelected($event)" i18n-placeholder> [formControl]="searchField" [ngbTypeahead]="searchAutoComplete" (keyup)="searchFieldKeyup($event)" (selectItem)="itemSelected($event)" i18n-placeholder>
<button *ngIf="!searchFieldEmpty" class="btn btn-link btn-sm px-0 position-absolute top-0 end-0" (click)="resetSearchField()"> <button type="button" *ngIf="!searchFieldEmpty" class="btn btn-link btn-sm px-0 position-absolute top-0 end-0" (click)="resetSearchField()">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-x me-1" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-x me-1" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/> <path fill-rule="evenodd" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/>
</svg> </svg>

View File

@ -91,6 +91,15 @@ export class AppFrameComponent implements OnInit, ComponentCanDeactivate {
this.isMenuCollapsed = true this.isMenuCollapsed = true
} }
get openDocuments(): PaperlessDocument[] {
return this.openDocumentsService.getOpenDocuments()
}
@HostListener('window:beforeunload')
canDeactivate(): Observable<boolean> | boolean {
return !this.openDocumentsService.hasDirty()
}
searchField = new FormControl('') searchField = new FormControl('')
get searchFieldEmpty(): boolean { get searchFieldEmpty(): boolean {
@ -107,15 +116,6 @@ export class AppFrameComponent implements OnInit, ComponentCanDeactivate {
} }
} }
get openDocuments(): PaperlessDocument[] {
return this.openDocumentsService.getOpenDocuments()
}
@HostListener('window:beforeunload')
canDeactivate(): Observable<boolean> | boolean {
return !this.openDocumentsService.hasDirty()
}
searchAutoComplete = (text$: Observable<string>) => searchAutoComplete = (text$: Observable<string>) =>
text$.pipe( text$.pipe(
debounceTime(200), debounceTime(200),

View File

@ -491,7 +491,7 @@ export class DocumentDetailComponent
.subscribe({ .subscribe({
next: () => { next: () => {
this.toastService.showInfo( this.toastService.showInfo(
$localize`Redo OCR operation will begin in the background.` $localize`Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.`
) )
if (modal) { if (modal) {
modal.close() modal.close()

View File

@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/', apiBaseUrl: document.baseURI + 'api/',
apiVersion: '2', apiVersion: '2',
appTitle: 'Paperless-ngx', appTitle: 'Paperless-ngx',
version: '1.9.2-dev', version: '1.10.0-dev',
webSocketHost: window.location.host, webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/', webSocketBaseUrl: base_url.pathname + 'ws/',

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated">Дакумент <x id="PH" equiv-text="status.filename"/> апрацоўваецца paperless-ngx.</target> <target state="translated">Дакумент <x id="PH" equiv-text="status.filename"/> апрацоўваецца paperless-ngx.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Наступная</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="translated">Прыборную панэль можна выкарыстоўваць для паказу захаваных праглядаў, такіх як "Уваходныя". Гэтыя налады знаходзяцца ў Наладах &gt; Захаваныя прагляды пасля таго, як вы іх стварылі.</target> <target state="translated">Прыборную панэль можна выкарыстоўваць для паказу захаваных праглядаў, такіх як "Уваходныя". Гэтыя налады знаходзяцца ў Наладах &gt; Захаваныя прагляды пасля таго, як вы іх стварылі.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Спіс дакументаў паказвае ўсе вашы дакументы і дазваляе фільтраваць, а таксама масава рэдагаваць. Ёсць тры розныя стылі прагляду: спіс, маленькія карты і вялікія карты. Спіс дакументаў, адкрытых для рэдагавання, паказаны на бакавой панэлі.</target> <target state="translated">Спіс дакументаў паказвае ўсе вашы дакументы і дазваляе фільтраваць, а таксама масава рэдагаваць. Ёсць тры розныя стылі прагляду: спіс, маленькія карты і вялікія карты. Спіс дакументаў, адкрытых для рэдагавання, паказаны на бакавой панэлі.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="translated">Інструменты фільтрацыі дазваляюць хутка знаходзіць дакументы па розных пошуках, датах, тэгах і г.д.</target> <target state="translated">Інструменты фільтрацыі дазваляюць хутка знаходзіць дакументы па розных пошуках, датах, тэгах і г.д.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="translated">Любую камбінацыю фільтраў можна захаваць у выглядзе 'прагляда', які потым можа адлюстроўвацца на прыборнай панэлі і/або бакавой панэлі.</target> <target state="translated">Любую камбінацыю фільтраў можна захаваць у выглядзе 'прагляда', які потым можа адлюстроўвацца на прыборнай панэлі і/або бакавой панэлі.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="translated">З дапамогай гэтых старонак можна кіраваць тэгамі, карэспандэнтамі, тыпамі дакументаў і шляхамі захоўвання. Іх таксама можна стварыць з прагляду рэдагавання дакумента.</target> <target state="translated">З дапамогай гэтых старонак можна кіраваць тэгамі, карэспандэнтамі, тыпамі дакументаў і шляхамі захоўвання. Іх таксама можна стварыць з прагляду рэдагавання дакумента.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="translated">Файлавыя задачы паказваюць вам дакументы, якія былі спажыты, чакаюць або пацярпелі збой падчас працэсу.</target> <target state="translated">Файлавыя задачы паказваюць вам дакументы, якія былі спажыты, чакаюць або пацярпелі збой падчас працэсу.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Праверце налады для розных налад вэб-праграмы або каб пераключыць налады для захаваных відаў.</target> <target state="translated">Праверце налады для розных налад вэб-праграмы або каб пераключыць налады для захаваных відаў.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="translated">Вобласць адміністратара змяшчае больш пашыраныя элементы кіравання, а таксама налады для аўтаматычнага атрымання электроннай пошты.</target> <target state="translated">Вобласць адміністратара змяшчае больш пашыраныя элементы кіравання, а таксама налады для аўтаматычнага атрымання электроннай пошты.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Дзякуй! 🙏</target> <target state="translated">Дзякуй! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="translated">Ёсць &lt;em&gt;тоны&lt;/em&gt; дадатковыя магчымасці і інфармацыя, якую мы тут не разглядалі, але гэта дапаможа вам пачаць. Праверце дакументацыю або наведайце праект на GitHub, каб даведацца больш або паведаміць аб праблемах.</target> <target state="translated">Ёсць &lt;em&gt;тоны&lt;/em&gt; дадатковыя магчымасці і інфармацыя, якую мы тут не разглядалі, але гэта дапаможа вам пачаць. Праверце дакументацыю або наведайце праект на GitHub, каб даведацца больш або паведаміць аб праблемах.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="translated">Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!</target> <target state="translated">Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Пачатак загрузкі...</target> <target state="translated">Пачатак загрузкі...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Вы ўвайшлі як <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Вы ўвайшлі як <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Выхад</target> <target state="translated">Выхад</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Адкрыць дакументы</target> <target state="translated">Адкрыць дакументы</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Закрыць усё</target> <target state="translated">Закрыць усё</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Кіраванне</target> <target state="translated">Кіраванне</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Карэспандэнты</target> <target state="translated">Карэспандэнты</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Тэгі</target> <target state="translated">Тэгі</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Тыпы дакументаў</target> <target state="translated">Тыпы дакументаў</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Шляхі захоўвання</target> <target state="translated">Шляхі захоўвання</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="translated">Файлавыя задачы<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="translated">Файлавыя задачы<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Кіраўнік</target> <target state="translated">Кіраўнік</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Дакументацыя</target> <target state="translated">Дакументацыя</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Прапанаваць ідэю</target> <target state="translated">Прапанаваць ідэю</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">даступна.</target> <target state="translated">даступна.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Націсніце, каб убачыць.</target> <target state="translated">Націсніце, каб убачыць.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="translated">Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў</target> <target state="translated">Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated"> Як гэта працуе? </target> <target state="translated"> Як гэта працуе? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Даступна абнаўленне</target> <target state="translated">Даступна абнаўленне</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="translated">Адбылася памылка падчас захавання налад праверкі абнаўленняў.</target> <target state="translated">Адбылася памылка падчас захавання налад праверкі абнаўленняў.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Ачысціць</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Пасля</target> <target state="translated">Пасля</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Ачысціць</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Перад</target> <target state="translated">Перад</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Любы</target> <target state="translated">Любы</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Ужыць</target> <target state="translated">Ужыць</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Націсніце зноў, каб выключыць элементы.</target> <target state="translated">Націсніце зноў, каб выключыць элементы.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Папярэдняя</target> <target state="translated">Папярэдняя</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Наступная</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Шлях захоўвання</target> <target state="translated">Шлях захоўвання</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Фільтраваць тэгі</target> <target state="translated">Фільтраваць тэгі</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Фільтр карэспандэнтаў</target> <target state="translated">Фільтр карэспандэнтаў</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Фільтр тыпаў дакументаў</target> <target state="translated">Фільтр тыпаў дакументаў</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Фільтраваць шляхі захоўвання</target> <target state="translated">Фільтраваць шляхі захоўвання</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Скінуць фільтры</target> <target state="translated">Скінуць фільтры</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> je zpracováván Paperless-ngx.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> je zpracováván Paperless-ngx.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Odhlásit se</target> <target state="final">Odhlásit se</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Otevřené dokumenty</target> <target state="final">Otevřené dokumenty</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Zavřít vše</target> <target state="final">Zavřít vše</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Spravovat</target> <target state="final">Spravovat</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Korespondenti</target> <target state="final">Korespondenti</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Štítky</target> <target state="final">Štítky</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Typy dokumentu</target> <target state="final">Typy dokumentu</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="needs-translation">Admin</target> <target state="needs-translation">Admin</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Dokumentace</target> <target state="final">Dokumentace</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="needs-translation">GitHub</target> <target state="needs-translation">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Navrhnout úpravu</target> <target state="final">Navrhnout úpravu</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">is available.</target> <target state="needs-translation">is available.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">Click to view.</target> <target state="needs-translation">Click to view.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="needs-translation">Update available</target> <target state="needs-translation">Update available</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Smazat</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Po</target> <target state="final">Po</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Smazat</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Před</target> <target state="final">Před</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Použít</target> <target state="final">Použít</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="needs-translation">Click again to exclude items.</target> <target state="needs-translation">Click again to exclude items.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrovat štítky</target> <target state="final">Filtrovat štítky</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrovat korespondenty</target> <target state="final">Filtrovat korespondenty</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrovat typy dokumentů</target> <target state="final">Filtrovat typy dokumentů</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Zrušit filtry</target> <target state="final">Zrušit filtry</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> behandles af paperless.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> behandles af paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Næste</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Uploader...</target> <target state="translated">Uploader...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Log ud</target> <target state="translated">Log ud</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Åbn dokumenter</target> <target state="translated">Åbn dokumenter</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Luk alle</target> <target state="translated">Luk alle</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Administrér</target> <target state="translated">Administrér</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Korrespondenter</target> <target state="translated">Korrespondenter</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Etiketter</target> <target state="translated">Etiketter</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Dokumenttyper</target> <target state="translated">Dokumenttyper</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Admin</target> <target state="translated">Admin</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentation</target> <target state="translated">Dokumentation</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Foreslå en idé</target> <target state="translated">Foreslå en idé</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">er tilgængelig.</target> <target state="translated">er tilgængelig.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klik for at se.</target> <target state="translated">Klik for at se.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Opdatering tilgængelig</target> <target state="translated">Opdatering tilgængelig</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Ryd</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Efter</target> <target state="translated">Efter</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Ryd</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Før</target> <target state="translated">Før</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Anvend</target> <target state="translated">Anvend</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Klik igen for at ekskludere elementer.</target> <target state="translated">Klik igen for at ekskludere elementer.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Forrige</target> <target state="translated">Forrige</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Næste</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Filtrer etiketter</target> <target state="translated">Filtrer etiketter</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Filtrer korrespondenter</target> <target state="translated">Filtrer korrespondenter</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Filtrer dokumenttyper</target> <target state="translated">Filtrer dokumenttyper</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Nulstil filtre</target> <target state="translated">Nulstil filtre</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> wird von Paperless verarbeitet.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> wird von Paperless verarbeitet.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="translated">Zurück</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Weiter</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Ende</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="translated">Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem 'Posteingang'. Diese Einstellungen werden unter Einstellungen &gt; gespeicherte Ansichten gefunden, sobald Sie mindestens eine eigene Ansicht erstellt haben.</target> <target state="translated">Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem 'Posteingang'. Diese Einstellungen werden unter Einstellungen &gt; gespeicherte Ansichten gefunden, sobald Sie mindestens eine eigene Ansicht erstellt haben.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="translated">Mit den Filterwerkzeugen können Sie schnell Dokumente finden, die verschiedene Datumsbereiche, Tags und andere Suchbegriffe enthalten.</target> <target state="translated">Mit den Filterwerkzeugen können Sie schnell Dokumente finden, die verschiedene Datumsbereiche, Tags und andere Suchbegriffe enthalten.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="translated">Jede Kombination von Filterkriterien kann als 'Ansicht' gespeichert werden, die dann auf dem Dashboard und / oder der Seitenleiste angezeigt werden können.</target> <target state="translated">Jede Kombination von Filterkriterien kann als 'Ansicht' gespeichert werden, die dann auf dem Dashboard und / oder der Seitenleiste angezeigt werden können.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="translated">Schlagwörter, Korrespondenten, Dokumententypen und Speicherpfade können über diese Seiten verwaltet werden. Sie können auch aus der Dokumentbearbeitung erstellt werden.</target> <target state="translated">Schlagwörter, Korrespondenten, Dokumententypen und Speicherpfade können über diese Seiten verwaltet werden. Sie können auch aus der Dokumentbearbeitung erstellt werden.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="translated">Die Dateiaufgaben zeigen Ihnen Dokumente, die verarbeitet wurden, auf Verarbeitung warten oder während der Verarbeitung fehlgeschlagen sind.</target> <target state="translated">Die Dateiaufgaben zeigen Ihnen Dokumente, die verarbeitet wurden, auf Verarbeitung warten oder während der Verarbeitung fehlgeschlagen sind.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Hier finden Sie verschiedene globale Einstellungen für die Anwendung und können die gespeicherten Ansichten verwalten.</target> <target state="translated">Hier finden Sie verschiedene globale Einstellungen für die Anwendung und können die gespeicherten Ansichten verwalten.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="translated">Der Adminbereich enthält erweiterte Steuerelemente sowie die Einstellungen für das automatische Abrufen von E-Mails.</target> <target state="translated">Der Adminbereich enthält erweiterte Steuerelemente sowie die Einstellungen für das automatische Abrufen von E-Mails.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Vielen Dank! 🙏</target> <target state="translated">Vielen Dank! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="translated">Es gibt noch &lt;em&gt;erheblich&lt;/em&gt; 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.</target> <target state="translated">Es gibt noch &lt;em&gt;erheblich&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="translated">Im Namen jedes Beitragenden zu diesem von der Gemeinschaft unterstützten Projekt, sagen wir, Danke, dass Sie Paperless-ngx benutzen!</target> <target state="translated">Im Namen jedes Beitragenden zu diesem von der Gemeinschaft unterstützten Projekt, sagen wir, Danke, dass Sie Paperless-ngx benutzen!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Beginne Upload...</target> <target state="translated">Beginne Upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Eingeloggt als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Eingeloggt als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Abmelden</target> <target state="final">Abmelden</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Geöffnete Dokumente</target> <target state="final">Geöffnete Dokumente</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Alle schließen</target> <target state="final">Alle schließen</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Verwalten</target> <target state="final">Verwalten</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Korrespondenten</target> <target state="final">Korrespondenten</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Tags</target> <target state="final">Tags</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Dokumenttypen</target> <target state="final">Dokumenttypen</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Speicherpfad</target> <target state="translated">Speicherpfad</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="translated">Dateiaufgaben<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="translated">Dateiaufgaben<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administration</target> <target state="final">Administration</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Dokumentation</target> <target state="final">Dokumentation</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Eine Idee vorschlagen</target> <target state="final">Eine Idee vorschlagen</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">ist verfügbar.</target> <target state="translated">ist verfügbar.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Zum Anzeigen klicken.</target> <target state="translated">Zum Anzeigen klicken.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="translated">Paperless-ngx kann automatisch auf Updates überprüfen</target> <target state="translated">Paperless-ngx kann automatisch auf Updates überprüfen</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated"> Wie funktioniert das? </target> <target state="translated"> Wie funktioniert das? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Aktualisierung verfügbar</target> <target state="translated">Aktualisierung verfügbar</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="translated">Es ist ein Fehler beim Speichern der Update Einstellungen aufgetreten.</target> <target state="translated">Es ist ein Fehler beim Speichern der Update Einstellungen aufgetreten.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Zurücksetzen</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Nach</target> <target state="final">Nach</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Zurücksetzen</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Vor</target> <target state="final">Vor</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Irgendeines</target> <target state="translated">Irgendeines</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Anwenden</target> <target state="final">Anwenden</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Erneut klicken, um Elemente auszuschließen.</target> <target state="translated">Erneut klicken, um Elemente auszuschließen.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Zurück</target> <target state="translated">Zurück</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Weiter</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Speicherpfad</target> <target state="translated">Speicherpfad</target>
</trans-unit> </trans-unit>
@ -2099,7 +2123,7 @@
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
<context context-type="linenumber">387</context> <context context-type="linenumber">387</context>
</context-group> </context-group>
<target state="translated">OCR wiederholen</target> <target state="translated">OCR wiederholen bestätigen</target>
</trans-unit> </trans-unit>
<trans-unit id="9197453786953646058" datatype="html"> <trans-unit id="9197453786953646058" datatype="html">
<source>This operation will permanently redo OCR for this document.</source> <source>This operation will permanently redo OCR for this document.</source>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Tags filtern</target> <target state="final">Tags filtern</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Korrespondenten filtern</target> <target state="final">Korrespondenten filtern</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Dokumenttypen filtern</target> <target state="final">Dokumenttypen filtern</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Speicherpfade filtern</target> <target state="translated">Speicherpfade filtern</target>
</trans-unit> </trans-unit>
@ -2453,7 +2477,7 @@
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
<context context-type="linenumber">388</context> <context context-type="linenumber">388</context>
</context-group> </context-group>
<target state="translated">Diese Aktion wird die Texterkennung für <x id="PH" equiv-text="this.list.selected.size"/> ausgewählte(s) Dokument(e) wiederholen.</target> <target state="translated">Diese Aktion wird OCR permanent für <x id="PH" equiv-text="this.list.selected.size"/> ausgewählte(s) Dokument(e) wiederholen.</target>
</trans-unit> </trans-unit>
<trans-unit id="8076495233090006322" datatype="html" approved="yes"> <trans-unit id="8076495233090006322" datatype="html" approved="yes">
<source>Filter by correspondent</source> <source>Filter by correspondent</source>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Filter zurücksetzen</target> <target state="final">Filter zurücksetzen</target>
</trans-unit> </trans-unit>
@ -3449,7 +3473,7 @@
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">173</context>
</context-group> </context-group>
<target state="final">Zeige Benachrichtigungen wenn neue Dokumente erkannt werden</target> <target state="final">Benachrichtigungen anzeigen, wenn neue Dokumente erkannt werden</target>
</trans-unit> </trans-unit>
<trans-unit id="6057053428592387613" datatype="html" approved="yes"> <trans-unit id="6057053428592387613" datatype="html" approved="yes">
<source>Show notifications when document processing completes successfully</source> <source>Show notifications when document processing completes successfully</source>
@ -3457,7 +3481,7 @@
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
<context context-type="linenumber">174</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<target state="final">Zeige Benachrichtigungen wenn neue Dokumente erfolgreich hinzugefügt wurden</target> <target state="final">Benachrichtigungen anzeigen, wenn die Dokumentenverarbeitung erfolgreich abgeschlossen wurde</target>
</trans-unit> </trans-unit>
<trans-unit id="370315664367425513" datatype="html" approved="yes"> <trans-unit id="370315664367425513" datatype="html" approved="yes">
<source>Show notifications when document processing fails</source> <source>Show notifications when document processing fails</source>
@ -3465,7 +3489,7 @@
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">175</context>
</context-group> </context-group>
<target state="final">Zeige Benachrichtigungen wenn Dokumente nicht hinzugefügt werden konnten</target> <target state="final">Benachrichtigungen anzeigen, wenn die Verarbeitung des Dokuments fehlschlägt</target>
</trans-unit> </trans-unit>
<trans-unit id="6838309441164918531" datatype="html" approved="yes"> <trans-unit id="6838309441164918531" datatype="html" approved="yes">
<source>Suppress notifications on dashboard</source> <source>Suppress notifications on dashboard</source>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">El documento<x id="PH" equiv-text="status.filename"/> está siendo procesado por paperless.</target> <target state="final">El documento<x id="PH" equiv-text="status.filename"/> está siendo procesado por paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Siguiente</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Iniciando subida...</target> <target state="translated">Iniciando subida...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Sesión iniciada como <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Sesión iniciada como <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Cerrar sesión</target> <target state="final">Cerrar sesión</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Abrir documentos</target> <target state="final">Abrir documentos</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Cerrar todos</target> <target state="final">Cerrar todos</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Organizar</target> <target state="final">Organizar</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Interlocutores</target> <target state="final">Interlocutores</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etiquetas</target> <target state="final">Etiquetas</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Tipos de documento</target> <target state="final">Tipos de documento</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Rutas de almacenamiento</target> <target state="translated">Rutas de almacenamiento</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administrar</target> <target state="final">Administrar</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Documentación</target> <target state="final">Documentación</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Sugerir una idea</target> <target state="final">Sugerir una idea</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">está disponible.</target> <target state="translated">está disponible.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Haz clic para ver.</target> <target state="translated">Haz clic para ver.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Actualización disponible</target> <target state="translated">Actualización disponible</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Limpiar</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Después</target> <target state="final">Después</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Limpiar</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Antes</target> <target state="final">Antes</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Cualquiera</target> <target state="translated">Cualquiera</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Aplicar</target> <target state="final">Aplicar</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Haga clic de nuevo para excluir los elementos.</target> <target state="translated">Haga clic de nuevo para excluir los elementos.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Anterior</target> <target state="translated">Anterior</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Siguiente</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Ruta de almacenamiento</target> <target state="translated">Ruta de almacenamiento</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrar etiquetas</target> <target state="final">Filtrar etiquetas</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrar interlocutores</target> <target state="final">Filtrar interlocutores</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrar tipos de documento</target> <target state="final">Filtrar tipos de documento</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtrar rutas de almacenamiento</target> <target state="translated">Filtrar rutas de almacenamiento</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Quitar filtros</target> <target state="final">Quitar filtros</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated">Paperless käsittelee asiakirjaa <x id="PH" equiv-text="status.filename"/>.</target> <target state="translated">Paperless käsittelee asiakirjaa <x id="PH" equiv-text="status.filename"/>.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Seuraava</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Aloittaa latausta...</target> <target state="translated">Aloittaa latausta...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Kirjautunut käyttäjänä <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Kirjautunut käyttäjänä <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Kirjaudu ulos</target> <target state="translated">Kirjaudu ulos</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Avaa asiakirjat</target> <target state="translated">Avaa asiakirjat</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Sulje kaikki</target> <target state="translated">Sulje kaikki</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Hallitse</target> <target state="translated">Hallitse</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Yhteyshenkilöt</target> <target state="translated">Yhteyshenkilöt</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Tunnisteet</target> <target state="translated">Tunnisteet</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Dokumenttityypit</target> <target state="translated">Dokumenttityypit</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Tallennustilan polut</target> <target state="translated">Tallennustilan polut</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Ylläpito</target> <target state="translated">Ylläpito</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentaatio</target> <target state="translated">Dokumentaatio</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Ehdota ideaa</target> <target state="translated">Ehdota ideaa</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">on saatavilla.</target> <target state="translated">on saatavilla.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Näytä klikkaamalla.</target> <target state="translated">Näytä klikkaamalla.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Päivitys saatavilla</target> <target state="translated">Päivitys saatavilla</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Tyhjennä</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Jälkeen</target> <target state="translated">Jälkeen</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Tyhjennä</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Ennen</target> <target state="translated">Ennen</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Mikä tahansa</target> <target state="translated">Mikä tahansa</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Käytä</target> <target state="translated">Käytä</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Klikkaa uudelleen jättääksesi pois kohteita.</target> <target state="translated">Klikkaa uudelleen jättääksesi pois kohteita.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Edellinen</target> <target state="translated">Edellinen</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Seuraava</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Tallennustilan polku</target> <target state="translated">Tallennustilan polku</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Suodata tunnisteita</target> <target state="translated">Suodata tunnisteita</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Suodata yhteyshenkilöt</target> <target state="translated">Suodata yhteyshenkilöt</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Suodata asiakirjatyyppejä</target> <target state="translated">Suodata asiakirjatyyppejä</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Suodata tallennuspolkuja</target> <target state="translated">Suodata tallennuspolkuja</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Tyhjennä suodattimet</target> <target state="translated">Tyhjennä suodattimet</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Le document <x id="PH" equiv-text="status.filename"/> est en cours de traitement par Paperless-ngx.</target> <target state="final">Le document <x id="PH" equiv-text="status.filename"/> est en cours de traitement par Paperless-ngx.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Suivant</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="translated">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 &gt; Vues sauvegardées une fois que vous en avez créé.</target> <target state="translated">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 &gt; Vues sauvegardées une fois que vous en avez créé.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="translated">Les outils de filtrage vous permettent de trouver rapidement des documents en utilisant diverses recherches, dates, tags, etc.</target> <target state="translated">Les outils de filtrage vous permettent de trouver rapidement des documents en utilisant diverses recherches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="translated">La zone Admin contient des contrôles plus avancés ainsi que les paramètres pour la récupération automatique des e-mails.</target> <target state="translated">La zone Admin contient des contrôles plus avancés ainsi que les paramètres pour la récupération automatique des e-mails.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Merci ! 🙏</target> <target state="translated">Merci ! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="translated">Il y a &lt;em&gt;des tonnes&lt;/em&gt; 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.</target> <target state="translated">Il y a &lt;em&gt;des tonnes&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="translated">Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !</target> <target state="translated">Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Début du téléversement...</target> <target state="translated">Début du téléversement...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Connecté en tant que <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Connecté en tant que <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Déconnexion</target> <target state="final">Déconnexion</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Documents ouverts</target> <target state="final">Documents ouverts</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Fermer tout</target> <target state="final">Fermer tout</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Gestion</target> <target state="final">Gestion</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Correspondants</target> <target state="final">Correspondants</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Étiquettes</target> <target state="final">Étiquettes</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Types de document</target> <target state="final">Types de document</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Chemins de stockage</target> <target state="translated">Chemins de stockage</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="translated">Traitement des fichiers<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="translated">Traitement des fichiers<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administration</target> <target state="final">Administration</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Documentation</target> <target state="translated">Documentation</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Suggérer une idée</target> <target state="final">Suggérer une idée</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">est disponible.</target> <target state="translated">est disponible.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Cliquer pour visualiser.</target> <target state="translated">Cliquer pour visualiser.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="translated">Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour</target> <target state="translated">Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated">Comment ça fonctionne ?</target> <target state="translated">Comment ça fonctionne ?</target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Mise à jour disponible</target> <target state="translated">Mise à jour disponible</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="translated">Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.</target> <target state="translated">Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Réinitialiser</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Après</target> <target state="final">Après</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Réinitialiser</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Avant</target> <target state="final">Avant</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Tous</target> <target state="translated">Tous</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Appliquer</target> <target state="final">Appliquer</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Cliquer à nouveau pour exclure des éléments.</target> <target state="translated">Cliquer à nouveau pour exclure des éléments.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Précédent</target> <target state="translated">Précédent</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Suivant</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Chemin de stockage</target> <target state="translated">Chemin de stockage</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrer les étiquettes</target> <target state="final">Filtrer les étiquettes</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrer les correspondants</target> <target state="final">Filtrer les correspondants</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrer les types de documents</target> <target state="final">Filtrer les types de documents</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtrer les chemins de stockage</target> <target state="translated">Filtrer les chemins de stockage</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Réinitialiser les filtres</target> <target state="final">Réinitialiser les filtres</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">מסמך <x id="PH" equiv-text="status.filename"/> נמצא בעיבוד ע"י Paperless-NG.</target> <target state="final">מסמך <x id="PH" equiv-text="status.filename"/> נמצא בעיבוד ע"י Paperless-NG.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">הבא</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">מאתחל העלאה...</target> <target state="translated">מאתחל העלאה...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">מחובר כ- <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">מחובר כ- <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">התנתק/י</target> <target state="final">התנתק/י</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">מסמכים פתוחים</target> <target state="translated">מסמכים פתוחים</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">סגור הכל</target> <target state="final">סגור הכל</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">נהל</target> <target state="translated">נהל</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">מכותבים</target> <target state="translated">מכותבים</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">תגיות</target> <target state="final">תגיות</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">סוגי מסמך</target> <target state="translated">סוגי מסמך</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">נתיבי אכסון</target> <target state="translated">נתיבי אכסון</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">מנהל</target> <target state="final">מנהל</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">תיעוד</target> <target state="translated">תיעוד</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">הצעה רעיון</target> <target state="translated">הצעה רעיון</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">זמין.</target> <target state="translated">זמין.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">לחץ להצגה.</target> <target state="translated">לחץ להצגה.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">קיים עדכון</target> <target state="translated">קיים עדכון</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">ניקוי</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">אחרי</target> <target state="final">אחרי</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">ניקוי</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">לפני</target> <target state="translated">לפני</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">החל</target> <target state="translated">החל</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">לחץ שוב כדי לא לכלול פריטים.</target> <target state="translated">לחץ שוב כדי לא לכלול פריטים.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">הקודם</target> <target state="translated">הקודם</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">הבא</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">נתיב אכסון</target> <target state="translated">נתיב אכסון</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">סנן תגיות</target> <target state="translated">סנן תגיות</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">סנן מכותבים</target> <target state="translated">סנן מכותבים</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">סנן סוגי מסמכים</target> <target state="translated">סנן סוגי מסמכים</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">סנן מיקום אכסון</target> <target state="translated">סנן מיקום אכסון</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="needs-translation">Reset filters</target> <target state="needs-translation">Reset filters</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> je u fazi obrade.</target> <target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> je u fazi obrade.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Pokretanje prijenosa...</target> <target state="translated">Pokretanje prijenosa...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Prijavljen kao <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Prijavljen kao <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Odjavi se</target> <target state="translated">Odjavi se</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Otvoreni dokumenti</target> <target state="translated">Otvoreni dokumenti</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Zatvori sve</target> <target state="translated">Zatvori sve</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Upravljaj</target> <target state="translated">Upravljaj</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Dopisnici</target> <target state="translated">Dopisnici</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Oznake</target> <target state="translated">Oznake</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Vrste dokumenta</target> <target state="translated">Vrste dokumenta</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Putanje pohrane</target> <target state="translated">Putanje pohrane</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Administrator</target> <target state="translated">Administrator</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentacija</target> <target state="translated">Dokumentacija</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Predloži ideju</target> <target state="translated">Predloži ideju</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">je dostupno.</target> <target state="translated">je dostupno.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klikni za prikaz.</target> <target state="translated">Klikni za prikaz.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Dostupno ažuriranje</target> <target state="translated">Dostupno ažuriranje</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Očisti</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Nakon</target> <target state="translated">Nakon</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Očisti</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Prije</target> <target state="translated">Prije</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Bilo koji</target> <target state="translated">Bilo koji</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Primijeni</target> <target state="translated">Primijeni</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Pritisnite ponovo da biste isključili stavke.</target> <target state="translated">Pritisnite ponovo da biste isključili stavke.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="needs-translation">Filter tags</target> <target state="needs-translation">Filter tags</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="needs-translation">Filter correspondents</target> <target state="needs-translation">Filter correspondents</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="needs-translation">Filter document types</target> <target state="needs-translation">Filter document types</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="needs-translation">Reset filters</target> <target state="needs-translation">Reset filters</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Paperless sta elaborando il documento <x id="PH" equiv-text="status.filename"/>.</target> <target state="final">Paperless sta elaborando il documento <x id="PH" equiv-text="status.filename"/>.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Successivo</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="translated">La dashboard può essere usata per mostrare le viste salvate, come una 'Inbox'. Queste impostazioni si trovano in Impostazioni &gt; Viste salvate, dopo averne create alcune.</target> <target state="translated">La dashboard può essere usata per mostrare le viste salvate, come una 'Inbox'. Queste impostazioni si trovano in Impostazioni &gt; Viste salvate, dopo averne create alcune.</target>
</trans-unit> </trans-unit>
@ -351,15 +379,15 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="7495498057594070122" datatype="html"> <trans-unit id="7495498057594070122" datatype="html">
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="translated">Gli strumenti di filtraggio ti consentono di trovare rapidamente documenti utilizzando vari termini di ricerca, date, tag, ecc.</target> <target state="translated">Gli strumenti di filtraggio ti consentono di trovare rapidamente documenti utilizzando vari termini di ricerca, date, tag, ecc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="translated">Qualsiasi combinazione di filtri può essere salvata come 'vista' che può essere visualizzata sulla dashboard e/o nella barra laterale.</target> <target state="translated">Qualsiasi combinazione di filtri può essere salvata come 'vista' che può essere visualizzata sulla dashboard e/o nella barra laterale.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="translated">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="translated">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à.</target> <target state="translated">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à.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Controlla le impostazioni per varie modifiche all'app web o per attivare o disattivare le impostazioni per le viste salvate.</target> <target state="translated">Controlla le impostazioni per varie modifiche all'app web o per attivare o disattivare le impostazioni per le viste salvate.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="translated">L'area di Amministrazione contiene impostazioni più avanzate e per il recupero automatico delle e-mail.</target> <target state="translated">L'area di Amministrazione contiene impostazioni più avanzate e per il recupero automatico delle e-mail.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Grazie! 🙏</target> <target state="translated">Grazie! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="translated">Ci sono &lt;em&gt;tonnellate&lt;/em&gt; 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.</target> <target state="translated">Ci sono &lt;em&gt;tonnellate&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="translated">Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!</target> <target state="translated">Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Avvio caricamento...</target> <target state="translated">Avvio caricamento...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Accesso effettuato come <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Accesso effettuato come <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Esci</target> <target state="final">Esci</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Apri documenti</target> <target state="final">Apri documenti</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Chiudi tutti</target> <target state="final">Chiudi tutti</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Gestisci</target> <target state="final">Gestisci</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Corrispondenti</target> <target state="final">Corrispondenti</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etichette</target> <target state="final">Etichette</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Tipi di documento</target> <target state="final">Tipi di documento</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Percorsi di archiviazione</target> <target state="translated">Percorsi di archiviazione</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="translated">Attività File<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="translated">Attività File<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Amministratore</target> <target state="final">Amministratore</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Documentazione</target> <target state="final">Documentazione</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Suggerisci un'idea</target> <target state="final">Suggerisci un'idea</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">è disponibile.</target> <target state="translated">è disponibile.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Clicca per visualizzare.</target> <target state="translated">Clicca per visualizzare.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="translated">Paperless-ngx può controllare automaticamente la presenza di aggiornamenti</target> <target state="translated">Paperless-ngx può controllare automaticamente la presenza di aggiornamenti</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated"> Come funziona? </target> <target state="translated"> Come funziona? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Aggiornamento disponibile</target> <target state="translated">Aggiornamento disponibile</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="translated">Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti.</target> <target state="translated">Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Pulisci</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Dopo</target> <target state="final">Dopo</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Pulisci</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Prima</target> <target state="final">Prima</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Qualsiasi</target> <target state="translated">Qualsiasi</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Applica</target> <target state="final">Applica</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Clicca di nuovo per escludere gli elementi.</target> <target state="translated">Clicca di nuovo per escludere gli elementi.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Precedente</target> <target state="translated">Precedente</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Successivo</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Percorso archiviazione</target> <target state="translated">Percorso archiviazione</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtra tag</target> <target state="final">Filtra tag</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtra corrispondenti</target> <target state="final">Filtra corrispondenti</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtra tipi di documento</target> <target state="final">Filtra tipi di documento</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtra percorsi di archiviazione</target> <target state="translated">Filtra percorsi di archiviazione</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Ripristina filtri</target> <target state="final">Ripristina filtri</target>
</trans-unit> </trans-unit>
@ -3899,7 +3923,7 @@
<context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context> <context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context>
<context context-type="linenumber">26</context> <context context-type="linenumber">26</context>
</context-group> </context-group>
<target state="needs-translation">You have unsaved changes to the saved view</target> <target state="translated">Hai modifiche non salvate alla vista salvata</target>
</trans-unit> </trans-unit>
<trans-unit id="7282050913165342352" datatype="html"> <trans-unit id="7282050913165342352" datatype="html">
<source>Are you sure you want to close this saved view?</source> <source>Are you sure you want to close this saved view?</source>
@ -3907,7 +3931,7 @@
<context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context> <context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
</context-group> </context-group>
<target state="needs-translation">Are you sure you want to close this saved view?</target> <target state="translated">Sei sicuro di voler chiudere questa vista salvata?</target>
</trans-unit> </trans-unit>
<trans-unit id="856284624775342512" datatype="html"> <trans-unit id="856284624775342512" datatype="html">
<source>Save and close</source> <source>Save and close</source>
@ -3915,7 +3939,7 @@
<context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context> <context context-type="sourcefile">src/app/guards/dirty-saved-view.guard.ts</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">34</context>
</context-group> </context-group>
<target state="needs-translation">Save and close</target> <target state="translated">Salva e chiudi</target>
</trans-unit> </trans-unit>
<trans-unit id="7536524521722799066" datatype="html" approved="yes"> <trans-unit id="7536524521722799066" datatype="html" approved="yes">
<source>(no title)</source> <source>(no title)</source>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> gëtt vu Paperless-ngx veraarbecht.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> gëtt vu Paperless-ngx veraarbecht.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Weider</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Upload fänkt un...</target> <target state="translated">Upload fänkt un...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Ageloggt als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Ageloggt als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Ofmellen</target> <target state="final">Ofmellen</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Oppen Dokumenter</target> <target state="final">Oppen Dokumenter</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">All zoumaachen</target> <target state="final">All zoumaachen</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Verwalten</target> <target state="final">Verwalten</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Korrespondenten</target> <target state="final">Korrespondenten</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etiketten</target> <target state="final">Etiketten</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Dokumententypen</target> <target state="final">Dokumententypen</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Späicherpfaden</target> <target state="translated">Späicherpfaden</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administratioun</target> <target state="final">Administratioun</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Dokumentatioun</target> <target state="final">Dokumentatioun</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Eng Iddi virschloen</target> <target state="final">Eng Iddi virschloen</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">ass disponibel.</target> <target state="translated">ass disponibel.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klicke fir unzeweisen.</target> <target state="translated">Klicke fir unzeweisen.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Update disponibel</target> <target state="translated">Update disponibel</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Läschen</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">No</target> <target state="final">No</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Läschen</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Virun</target> <target state="final">Virun</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Applizéieren</target> <target state="final">Applizéieren</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Klickt nach eng Kéier fir Elementer auszeschléissen.</target> <target state="translated">Klickt nach eng Kéier fir Elementer auszeschléissen.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Zréck</target> <target state="translated">Zréck</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Weider</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Späicherpfad</target> <target state="translated">Späicherpfad</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Etikette filteren</target> <target state="final">Etikette filteren</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Korrespondente filteren</target> <target state="final">Korrespondente filteren</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Dokumententype filteren</target> <target state="final">Dokumententype filteren</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Filteren zrécksetzen</target> <target state="final">Filteren zrécksetzen</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Document <x id="PH" equiv-text="status.filename"/> wordt verwerkt door paperless.</target> <target state="final">Document <x id="PH" equiv-text="status.filename"/> wordt verwerkt door paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Volgende</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Bedankt! 🙏</target> <target state="translated">Bedankt! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Upload starten...</target> <target state="translated">Upload starten...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Ingelogd als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Ingelogd als <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Afmelden</target> <target state="final">Afmelden</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Open documenten</target> <target state="final">Open documenten</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Alles sluiten</target> <target state="final">Alles sluiten</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Beheren</target> <target state="final">Beheren</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Correspondenten</target> <target state="final">Correspondenten</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Labels</target> <target state="final">Labels</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Documenttypen</target> <target state="final">Documenttypen</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Opslag paden</target> <target state="translated">Opslag paden</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Beheer</target> <target state="final">Beheer</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Handleiding</target> <target state="final">Handleiding</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Ideeënbus</target> <target state="final">Ideeënbus</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">is beschikbaar.</target> <target state="translated">is beschikbaar.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klik om te bekijken.</target> <target state="translated">Klik om te bekijken.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Update beschikbaar</target> <target state="translated">Update beschikbaar</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Leegmaken</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Na</target> <target state="final">Na</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Leegmaken</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Voor</target> <target state="final">Voor</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Alle</target> <target state="translated">Alle</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Toepassen</target> <target state="final">Toepassen</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Klik nogmaals om items uit te sluiten.</target> <target state="translated">Klik nogmaals om items uit te sluiten.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Vorige</target> <target state="translated">Vorige</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Volgende</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Opslag pad</target> <target state="translated">Opslag pad</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Labels filteren</target> <target state="final">Labels filteren</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Correspondenten filteren</target> <target state="final">Correspondenten filteren</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Documenttypes filteren</target> <target state="final">Documenttypes filteren</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Filters terug zetten</target> <target state="final">Filters terug zetten</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="needs-translation">Document <x id="PH" equiv-text="status.filename"/> is being processed by paperless.</target> <target state="needs-translation">Document <x id="PH" equiv-text="status.filename"/> is being processed by paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Neste</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Starter opplasting...</target> <target state="translated">Starter opplasting...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Logg ut</target> <target state="translated">Logg ut</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Åpne dokumenter</target> <target state="translated">Åpne dokumenter</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Lukk alle</target> <target state="translated">Lukk alle</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Behandle</target> <target state="translated">Behandle</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Korrespondenter</target> <target state="translated">Korrespondenter</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Tags</target> <target state="translated">Tags</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Dokumenttyper</target> <target state="translated">Dokumenttyper</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Lagringssti</target> <target state="translated">Lagringssti</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Admin</target> <target state="translated">Admin</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentasjon</target> <target state="translated">Dokumentasjon</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Foreslå en idé</target> <target state="translated">Foreslå en idé</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">er tilgjengelig.</target> <target state="translated">er tilgjengelig.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klikk for å se.</target> <target state="translated">Klikk for å se.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Oppdatering er tilgjengelig</target> <target state="translated">Oppdatering er tilgjengelig</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Tøm</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Etter</target> <target state="translated">Etter</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Tøm</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Før</target> <target state="translated">Før</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Enhver</target> <target state="translated">Enhver</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Bruk</target> <target state="translated">Bruk</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Klikk igjen for å ekskludere elementer.</target> <target state="translated">Klikk igjen for å ekskludere elementer.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Forrige</target> <target state="translated">Forrige</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Neste</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Lagringssti</target> <target state="translated">Lagringssti</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Filtrer etter tagger</target> <target state="translated">Filtrer etter tagger</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Filtrere korrespondenter</target> <target state="translated">Filtrere korrespondenter</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Filtrer dokumenttyper</target> <target state="translated">Filtrer dokumenttyper</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtrere lagringsbaner</target> <target state="translated">Filtrere lagringsbaner</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Tilbakestille filtre</target> <target state="translated">Tilbakestille filtre</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> jest przetwarzany przez paperless.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> jest przetwarzany przez paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Następny</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Rozpoczęcie wysyłania...</target> <target state="translated">Rozpoczęcie wysyłania...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Zalogowany jako <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Zalogowany jako <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Wyloguj</target> <target state="final">Wyloguj</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Otwarte dokumenty</target> <target state="final">Otwarte dokumenty</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Zamknij wszystkie</target> <target state="final">Zamknij wszystkie</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Zarządzaj</target> <target state="final">Zarządzaj</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Nadawcy</target> <target state="final">Nadawcy</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Tagi</target> <target state="final">Tagi</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Typy dokumentów</target> <target state="final">Typy dokumentów</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Ścieżki składowania</target> <target state="translated">Ścieżki składowania</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Administracja</target> <target state="translated">Administracja</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Dokumentacja</target> <target state="final">Dokumentacja</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Zaproponuj pomysł</target> <target state="final">Zaproponuj pomysł</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">jest dostępny.</target> <target state="translated">jest dostępny.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Kliknij, aby zobaczyć.</target> <target state="translated">Kliknij, aby zobaczyć.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Aktualizacja jest dostępna</target> <target state="translated">Aktualizacja jest dostępna</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Wyczyść</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Po</target> <target state="final">Po</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Wyczyść</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Przed</target> <target state="final">Przed</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Zastosuj</target> <target state="final">Zastosuj</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Kliknij ponownie, aby wykluczyć elementy.</target> <target state="translated">Kliknij ponownie, aby wykluczyć elementy.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Poprzedni</target> <target state="translated">Poprzedni</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Następny</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Ścieżki składowania</target> <target state="translated">Ścieżki składowania</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtruj tagi</target> <target state="final">Filtruj tagi</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtruj nadawców</target> <target state="final">Filtruj nadawców</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtruj typy dokumentów</target> <target state="final">Filtruj typy dokumentów</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtruj ścieżkę przechowywania</target> <target state="translated">Filtruj ścieżkę przechowywania</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Zresetuj filtry</target> <target state="final">Zresetuj filtry</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Documento <x id="PH" equiv-text="status.filename"/> está sendo processado pelo paperless.</target> <target state="final">Documento <x id="PH" equiv-text="status.filename"/> está sendo processado pelo paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Encerrar sessão</target> <target state="final">Encerrar sessão</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Abrir documentos</target> <target state="final">Abrir documentos</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Fechar todos</target> <target state="final">Fechar todos</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Gerenciar</target> <target state="final">Gerenciar</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Correspondentes</target> <target state="final">Correspondentes</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etiquetas</target> <target state="final">Etiquetas</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Tipos de documento</target> <target state="final">Tipos de documento</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Admin</target> <target state="translated">Admin</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Documentação</target> <target state="final">Documentação</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Sugerir uma idéia</target> <target state="final">Sugerir uma idéia</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">is available.</target> <target state="needs-translation">is available.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">Click to view.</target> <target state="needs-translation">Click to view.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="needs-translation">Update available</target> <target state="needs-translation">Update available</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Limpar</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Antes</target> <target state="final">Antes</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Limpar</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Depois</target> <target state="final">Depois</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Aplicar</target> <target state="final">Aplicar</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Clique novamente para excluir itens.</target> <target state="translated">Clique novamente para excluir itens.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrar etiquetas</target> <target state="final">Filtrar etiquetas</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrar correspondentes</target> <target state="final">Filtrar correspondentes</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrar tipos de documento</target> <target state="final">Filtrar tipos de documento</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Limpar filtros</target> <target state="final">Limpar filtros</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Documento <x id="PH" equiv-text="status.filename"/> está a ser processado pelo paperless.</target> <target state="final">Documento <x id="PH" equiv-text="status.filename"/> está a ser processado pelo paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Seguinte</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Obrigado! 🙏</target> <target state="translated">Obrigado! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">A iniciar o carregamento...</target> <target state="translated">A iniciar o carregamento...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Terminar sessão</target> <target state="final">Terminar sessão</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Abrir documentos</target> <target state="final">Abrir documentos</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Fechar todos</target> <target state="final">Fechar todos</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Gerir</target> <target state="final">Gerir</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Correspondentes</target> <target state="final">Correspondentes</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etiquetas</target> <target state="final">Etiquetas</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Tipos de documento</target> <target state="final">Tipos de documento</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administrador</target> <target state="final">Administrador</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Documentação</target> <target state="final">Documentação</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="final">Github</target> <target state="final">Github</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Sugerir uma ideia</target> <target state="final">Sugerir uma ideia</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">está disponível.</target> <target state="translated">está disponível.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Clique para ver.</target> <target state="translated">Clique para ver.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated"> Como é que isto funciona? </target> <target state="translated"> Como é que isto funciona? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Atualização disponível</target> <target state="translated">Atualização disponível</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Limpar</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Antes</target> <target state="final">Antes</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Limpar</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Depois</target> <target state="final">Depois</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Aplicar</target> <target state="final">Aplicar</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Clique novamente para excluir itens.</target> <target state="translated">Clique novamente para excluir itens.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Anterior</target> <target state="translated">Anterior</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Seguinte</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrar etiquetas</target> <target state="final">Filtrar etiquetas</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrar correspondentes</target> <target state="final">Filtrar correspondentes</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrar tipos de documentos</target> <target state="final">Filtrar tipos de documentos</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Limpar filtros</target> <target state="final">Limpar filtros</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Documentul <x id="PH" equiv-text="status.filename"/> este în procesare.</target> <target state="final">Documentul <x id="PH" equiv-text="status.filename"/> este în procesare.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Deconectare</target> <target state="final">Deconectare</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Deschide documente</target> <target state="final">Deschide documente</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Închide tot</target> <target state="final">Închide tot</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Administrează</target> <target state="final">Administrează</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Corespondenți</target> <target state="final">Corespondenți</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Etichete</target> <target state="final">Etichete</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Tipuri de documente</target> <target state="final">Tipuri de documente</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Administrator</target> <target state="final">Administrator</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Documentație</target> <target state="final">Documentație</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Sugestii</target> <target state="final">Sugestii</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">is available.</target> <target state="needs-translation">is available.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">Click to view.</target> <target state="needs-translation">Click to view.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="needs-translation">Update available</target> <target state="needs-translation">Update available</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Curăță</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">După</target> <target state="final">După</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Curăță</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Înainte</target> <target state="final">Înainte</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Aplică</target> <target state="final">Aplică</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Click din nou pentru a exclude elemente.</target> <target state="translated">Click din nou pentru a exclude elemente.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrează etichete</target> <target state="final">Filtrează etichete</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrează corespondenți</target> <target state="final">Filtrează corespondenți</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrează tipuri de documente</target> <target state="final">Filtrează tipuri de documente</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Resetare filtre</target> <target state="final">Resetare filtre</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Документ <x id="PH" equiv-text="status.filename"/> обрабатывается paperless</target> <target state="final">Документ <x id="PH" equiv-text="status.filename"/> обрабатывается paperless</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Следующий</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Выход</target> <target state="final">Выход</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Открыть документы</target> <target state="final">Открыть документы</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Закрыть всё</target> <target state="final">Закрыть всё</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Управлять</target> <target state="final">Управлять</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Корреспонденты</target> <target state="final">Корреспонденты</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Теги</target> <target state="final">Теги</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Типы документов</target> <target state="final">Типы документов</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Пути хранения</target> <target state="translated">Пути хранения</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="final">Администрирование</target> <target state="final">Администрирование</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Документация</target> <target state="final">Документация</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Предложить идею</target> <target state="final">Предложить идею</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">доступно.</target> <target state="translated">доступно.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Нажмите для просмотра.</target> <target state="translated">Нажмите для просмотра.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Доступно обновление</target> <target state="translated">Доступно обновление</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Очистить</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">После</target> <target state="final">После</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Очистить</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">До</target> <target state="final">До</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Любой</target> <target state="translated">Любой</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Подтвердить</target> <target state="final">Подтвердить</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Нажмите еще раз, чтобы исключить элементы.</target> <target state="translated">Нажмите еще раз, чтобы исключить элементы.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Предыдущий</target> <target state="translated">Предыдущий</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Следующий</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Путь к хранилищу</target> <target state="translated">Путь к хранилищу</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Фильтр тегов</target> <target state="final">Фильтр тегов</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Фильтр корреспондентов</target> <target state="final">Фильтр корреспондентов</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Фильтр типа документов</target> <target state="final">Фильтр типа документов</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Фильтр по пути хранения</target> <target state="translated">Фильтр по пути хранения</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Сбросить фильтры</target> <target state="final">Сбросить фильтры</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> je v postopku obdelave.</target> <target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> je v postopku obdelave.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Naslednji</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Začetek nalaganja...</target> <target state="translated">Začetek nalaganja...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Prijavljen kot <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Prijavljen kot <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Odjavi se</target> <target state="translated">Odjavi se</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Odpri dokumente</target> <target state="translated">Odpri dokumente</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Zapri vse</target> <target state="translated">Zapri vse</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Upravljaj</target> <target state="translated">Upravljaj</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Dopisniki</target> <target state="translated">Dopisniki</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Oznake</target> <target state="translated">Oznake</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Vrste dokumentov</target> <target state="translated">Vrste dokumentov</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Poti do shrambe</target> <target state="translated">Poti do shrambe</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Skrbnik</target> <target state="translated">Skrbnik</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentacija</target> <target state="translated">Dokumentacija</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Podaj predlog</target> <target state="translated">Podaj predlog</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">je na voljo.</target> <target state="translated">je na voljo.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klikni za ogled.</target> <target state="translated">Klikni za ogled.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Posodobitev na voljo</target> <target state="translated">Posodobitev na voljo</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Počisti</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Po</target> <target state="translated">Po</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Počisti</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Pred</target> <target state="translated">Pred</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Poljuben</target> <target state="translated">Poljuben</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Uporabi</target> <target state="translated">Uporabi</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Kliknite znova, da izključite elemente.</target> <target state="translated">Kliknite znova, da izključite elemente.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Prejšnji</target> <target state="translated">Prejšnji</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Naslednji</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Pot do shrambe</target> <target state="translated">Pot do shrambe</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Filtriraj oznake</target> <target state="translated">Filtriraj oznake</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Filtrirajte dopisnike</target> <target state="translated">Filtrirajte dopisnike</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Filtrirajte vrste dokumentov</target> <target state="translated">Filtrirajte vrste dokumentov</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtriraj poti shrambe</target> <target state="translated">Filtriraj poti shrambe</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Ponastavi filtre</target> <target state="translated">Ponastavi filtre</target>
</trans-unit> </trans-unit>

View File

@ -339,59 +339,87 @@
</context-group> </context-group>
<target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> obrađuje Paperless.</target> <target state="translated">Dokument <x id="PH" equiv-text="status.filename"/> obrađuje Paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="translated">Prethodni</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Sledeći</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Kraj</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="translated">Kontrolna tabla se može koristiti za prikazivanje sačuvanih pogleda, kao što je 'Inbox'. Ta podešavanja se nalaze pod Podešavanja &gt; Sačuvani pogledi kada budete kreirali neke.</target>
</trans-unit> </trans-unit>
<trans-unit id="9075755296812854717" datatype="html"> <trans-unit id="9075755296812854717" datatype="html">
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="7495498057594070122" datatype="html"> <trans-unit id="7495498057594070122" datatype="html">
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="1334220418719920556" datatype="html"> <trans-unit id="1334220418719920556" datatype="html">
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="translated">Alati za filtriranje vam omogućavaju da brzo pronađete dokumente koristeći različite pretrage, datume, oznake itd.</target>
</trans-unit> </trans-unit>
<trans-unit id="5427326625898532358" datatype="html"> <trans-unit id="5427326625898532358" datatype="html">
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="2804886236408698479" datatype="html"> <trans-unit id="2804886236408698479" datatype="html">
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="4680387114119209483" datatype="html"> <trans-unit id="4680387114119209483" datatype="html">
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="translated">Obrada dokumenata vam prikazuje dokumenta koja su obrađena, čekaju da budu obrađena ili možda nisu uspešno obrađena.</target> <target state="translated">Obrada dokumenata vam prikazuje dokumenta koja su obrađena, čekaju da budu obrađena ili možda nisu uspešno obrađena.</target>
</trans-unit> </trans-unit>
@ -399,23 +427,23 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="translated">Proverite podešavanja za različita podešavanja veb aplikacije ili da biste uključili podešavanja za sačuvane poglede.</target>
</trans-unit> </trans-unit>
<trans-unit id="7643249460591212914" datatype="html"> <trans-unit id="7643249460591212914" datatype="html">
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="translated">Administracija sadrži naprednije kontrole, kao i podešavanja za automatsko preuzimanje e-pošte.</target>
</trans-unit> </trans-unit>
<trans-unit id="7172877665285340082" datatype="html"> <trans-unit id="7172877665285340082" datatype="html">
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="translated">Hvala vam! 🙏</target> <target state="translated">Hvala vam! 🙏</target>
</trans-unit> </trans-unit>
@ -423,23 +451,23 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="translated">Ima &lt;em&gt;tona&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
<trans-unit id="4270528545616947218" datatype="html"> <trans-unit id="4270528545616947218" datatype="html">
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="translated">Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx!</target>
</trans-unit> </trans-unit>
<trans-unit id="5749300816154614125" datatype="html"> <trans-unit id="5749300816154614125" datatype="html">
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">Pokretanje otpremanja...</target> <target state="translated">Pokretanje otpremanja...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">Ulogovan kao <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">Ulogovan kao <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Odjavi se</target> <target state="translated">Odjavi se</target>
</trans-unit> </trans-unit>
@ -500,27 +528,27 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
<context context-type="linenumber">1</context> <context context-type="linenumber">1</context>
</context-group> </context-group>
<target state="translated">Komandna tabla</target> <target state="translated">Kontrolna tabla</target>
</trans-unit> </trans-unit>
<trans-unit id="4733307402565258070" datatype="html"> <trans-unit id="4733307402565258070" datatype="html">
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Otvorena dokumenta</target> <target state="translated">Otvorena dokumenta</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Zatvori svе</target> <target state="translated">Zatvori svе</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Upravljanje</target> <target state="translated">Upravljanje</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Korespodenti</target> <target state="translated">Korespodenti</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Oznake</target> <target state="translated">Oznake</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Tipovi dokumenta</target> <target state="translated">Tipovi dokumenta</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">Putanja skladišta</target> <target state="translated">Putanja skladišta</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="translated">Obrada dokumenata<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="translated">Obrada dokumenata<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Administracija</target> <target state="translated">Administracija</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokumentacija</target> <target state="translated">Dokumentacija</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Predložite ideju</target> <target state="translated">Predložite ideju</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">je dostupno.</target> <target state="translated">je dostupno.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Klik za prеglеd.</target> <target state="translated">Klik za prеglеd.</target>
</trans-unit> </trans-unit>
@ -760,15 +788,15 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="translated">Paperless-ngx može automatski da proveri da li postoje ažuriranja</target>
</trans-unit> </trans-unit>
<trans-unit id="894819944961861800" datatype="html"> <trans-unit id="894819944961861800" datatype="html">
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="translated"> Kako ovo radi? </target> <target state="translated"> Kako ovo radi? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Dostupno jе ažuriranjе</target> <target state="translated">Dostupno jе ažuriranjе</target>
</trans-unit> </trans-unit>
@ -796,9 +824,25 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="translated">Došlo je do greške prilikom čuvanja podešavanja.</target>
</trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Očisti</target>
</trans-unit> </trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Posle</target> <target state="translated">Posle</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Očisti</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Pre</target> <target state="translated">Pre</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">Bilo koja</target> <target state="translated">Bilo koja</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Primeni</target> <target state="translated">Primeni</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Kliknite ponovo da biste isključili stavke.</target> <target state="translated">Kliknite ponovo da biste isključili stavke.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1575,7 +1607,7 @@
<context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context>
<context context-type="linenumber">4</context> <context context-type="linenumber">4</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="translated">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.</target>
</trans-unit> </trans-unit>
<trans-unit id="4474647174688421179" datatype="html"> <trans-unit id="4474647174688421179" datatype="html">
<source>More detail on how to use and configure Paperless-ngx is always available in the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://paperless-ngx.readthedocs.io&quot; target=&quot;_blank&quot;&gt;"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.</source> <source>More detail on how to use and configure Paperless-ngx is always available in the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://paperless-ngx.readthedocs.io&quot; target=&quot;_blank&quot;&gt;"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.</source>
@ -1583,7 +1615,7 @@
<context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
</context-group> </context-group>
<target state="needs-translation">More detail on how to use and configure Paperless-ngx is always available in the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://paperless-ngx.readthedocs.io&quot; target=&quot;_blank&quot;&gt;"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.</target> <target state="translated">Više detalja o tome kako da koristite i konfigurišete Paperless-ngx je uvek dostupno u <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://paperless-ngx.readthedocs.io&quot; target=&quot;_blank&quot;&gt;"/>dokumentaciji<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.</target>
</trans-unit> </trans-unit>
<trans-unit id="4294899532887357745" datatype="html"> <trans-unit id="4294899532887357745" datatype="html">
<source>Thanks for being a part of the Paperless-ngx community!</source> <source>Thanks for being a part of the Paperless-ngx community!</source>
@ -1591,7 +1623,7 @@
<context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context>
<context context-type="linenumber">8</context> <context context-type="linenumber">8</context>
</context-group> </context-group>
<target state="needs-translation">Thanks for being a part of the Paperless-ngx community!</target> <target state="translated">Hvala što ste deo Paperless-ngx zajednice!</target>
</trans-unit> </trans-unit>
<trans-unit id="1415832194529539652" datatype="html"> <trans-unit id="1415832194529539652" datatype="html">
<source>Start the tour</source> <source>Start the tour</source>
@ -1599,7 +1631,7 @@
<context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html</context>
<context context-type="linenumber">9</context> <context context-type="linenumber">9</context>
</context-group> </context-group>
<target state="translated">Započni upoznavanje</target> <target state="translated">Započni obilazak</target>
</trans-unit> </trans-unit>
<trans-unit id="7822640317427130239" datatype="html"> <trans-unit id="7822640317427130239" datatype="html">
<source>Searching document with asn <x id="INTERPOLATION" equiv-text="{{asn}}"/></source> <source>Searching document with asn <x id="INTERPOLATION" equiv-text="{{asn}}"/></source>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">Prethodni</target> <target state="translated">Prethodni</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">Sledeći</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">Putanja skladišta</target> <target state="translated">Putanja skladišta</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Filtriraj oznake</target> <target state="translated">Filtriraj oznake</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Filtriraj korespodente</target> <target state="translated">Filtriraj korespodente</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Filtriraj tip dokumenta</target> <target state="translated">Filtriraj tip dokumenta</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Filtriraj po putanji skladišta</target> <target state="translated">Filtriraj po putanji skladišta</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Poništavanje filtera</target> <target state="translated">Poništavanje filtera</target>
</trans-unit> </trans-unit>
@ -3177,7 +3201,7 @@
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
</context-group> </context-group>
<target state="translated">Započni upoznavanje</target> <target state="translated">Započni obilazak</target>
</trans-unit> </trans-unit>
<trans-unit id="6439365426343089851" datatype="html"> <trans-unit id="6439365426343089851" datatype="html">
<source>General</source> <source>General</source>
@ -3361,7 +3385,7 @@
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
<context context-type="linenumber">134,137</context> <context context-type="linenumber">134,137</context>
</context-group> </context-group>
<target state="needs-translation"> Update checking works by pinging the the public <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;"/>Github API<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/> for the latest release to determine whether a new version is available.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br/&gt;"/> Actual updating of the app must still be performed manually. </target> <target state="translated"> Provera ažuriranja funkcioniše pingovanjem javnog <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;"/>Github API<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/> za najnovije izdanje da bi se utvrdilo da li je nova verzija dostupna.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br/&gt;"/> Stvarno ažuriranje aplikacije i dalje mora da se obavlja ručno. </target>
</trans-unit> </trans-unit>
<trans-unit id="5489945693955857309" datatype="html"> <trans-unit id="5489945693955857309" datatype="html">
<source><x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>No tracking data is collected by the app in any way.<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/></source> <source><x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>No tracking data is collected by the app in any way.<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/></source>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="final">Dokument <x id="PH" equiv-text="status.filename"/> behandlas av paperless.</target> <target state="final">Dokument <x id="PH" equiv-text="status.filename"/> behandlas av paperless.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="final">Logga ut</target> <target state="final">Logga ut</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="final">Öppna dokument</target> <target state="final">Öppna dokument</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="final">Stäng alla</target> <target state="final">Stäng alla</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="final">Hantera</target> <target state="final">Hantera</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="final">Korrespondenter</target> <target state="final">Korrespondenter</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="final">Taggar</target> <target state="final">Taggar</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="final">Dokumenttyper</target> <target state="final">Dokumenttyper</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="needs-translation">Admin</target> <target state="needs-translation">Admin</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="final">Dokumentation</target> <target state="final">Dokumentation</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="needs-translation">GitHub</target> <target state="needs-translation">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="final">Föreslå en idé</target> <target state="final">Föreslå en idé</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">is available.</target> <target state="needs-translation">is available.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">Click to view.</target> <target state="needs-translation">Click to view.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="needs-translation">Update available</target> <target state="needs-translation">Update available</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">Rensa</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="final">Efter</target> <target state="final">Efter</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="final">Rensa</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html" approved="yes"> <trans-unit id="1218334388194408974" datatype="html" approved="yes">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="final">Innan</target> <target state="final">Innan</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="final">Tillämpa</target> <target state="final">Tillämpa</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="needs-translation">Click again to exclude items.</target> <target state="needs-translation">Click again to exclude items.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html" approved="yes"> <trans-unit id="5028777105388019087" datatype="html" approved="yes">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="final">Filtrera taggar</target> <target state="final">Filtrera taggar</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="final">Filtrera korrespondenter</target> <target state="final">Filtrera korrespondenter</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="final">Filtrera dokument typ</target> <target state="final">Filtrera dokument typ</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="final">Återställ filter</target> <target state="final">Återställ filter</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated"><x id="PH" equiv-text="status.filename"/> adlı belge paperless tarafından işleniyor.</target> <target state="translated"><x id="PH" equiv-text="status.filename"/> adlı belge paperless tarafından işleniyor.</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="needs-translation">Initiating upload...</target> <target state="needs-translation">Initiating upload...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="needs-translation">Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">Oturumu kapat</target> <target state="translated">Oturumu kapat</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">Belgeleri aç</target> <target state="translated">Belgeleri aç</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">Tümünü kapat</target> <target state="translated">Tümünü kapat</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">Yönet</target> <target state="translated">Yönet</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">Muhabirler</target> <target state="translated">Muhabirler</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">Etiketler</target> <target state="translated">Etiketler</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">Belge türleri</target> <target state="translated">Belge türleri</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="needs-translation">Storage paths</target> <target state="needs-translation">Storage paths</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">Yönetici</target> <target state="translated">Yönetici</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">Dokümantasyon</target> <target state="translated">Dokümantasyon</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">Github</target> <target state="translated">Github</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">Bir fikir öner</target> <target state="translated">Bir fikir öner</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="needs-translation">is available.</target> <target state="needs-translation">is available.</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">Görüntülemek için tıklayın.</target> <target state="translated">Görüntülemek için tıklayın.</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">Güncelleme mevcut</target> <target state="translated">Güncelleme mevcut</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Temizle</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">Sonrası</target> <target state="translated">Sonrası</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">Temizle</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">Öncesinde</target> <target state="translated">Öncesinde</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="needs-translation">Any</target> <target state="needs-translation">Any</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">Uygula</target> <target state="translated">Uygula</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">Öğeleri hariç tutmak için yeniden tıklatın.</target> <target state="translated">Öğeleri hariç tutmak için yeniden tıklatın.</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="needs-translation">Previous</target> <target state="needs-translation">Previous</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="needs-translation">Next</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="needs-translation">Storage path</target> <target state="needs-translation">Storage path</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">Etiketlere göre filtrele</target> <target state="translated">Etiketlere göre filtrele</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">Muhabire göre filtrele</target> <target state="translated">Muhabire göre filtrele</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">Belge türlerini göre filtrele</target> <target state="translated">Belge türlerini göre filtrele</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="needs-translation">Filter storage paths</target> <target state="needs-translation">Filter storage paths</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">Filtreleri sıfırla</target> <target state="translated">Filtreleri sıfırla</target>
</trans-unit> </trans-unit>

View File

@ -339,11 +339,39 @@
</context-group> </context-group>
<target state="translated">文档 <x id="PH" equiv-text="status.filename"/> 正在被 paperless 处理中。</target> <target state="translated">文档 <x id="PH" equiv-text="status.filename"/> 正在被 paperless 处理中。</target>
</trans-unit> </trans-unit>
<trans-unit id="2501522447884928778" datatype="html">
<source>Prev</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">119</context>
</context-group>
<target state="needs-translation">Prev</target>
</trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">120</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">下一个</target>
</trans-unit>
<trans-unit id="1241348629231510663" datatype="html">
<source>End</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">End</target>
</trans-unit>
<trans-unit id="3909462337752654810" datatype="html"> <trans-unit id="3909462337752654810" datatype="html">
<source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source> <source>The dashboard can be used to show saved views, such as an &apos;Inbox&apos;. Those settings are found under Settings &gt; Saved Views once you have created some.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">122</context> <context context-type="linenumber">126</context>
</context-group> </context-group>
<target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target> <target state="needs-translation">The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings &gt; Saved Views once you have created some.</target>
</trans-unit> </trans-unit>
@ -351,7 +379,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">129</context> <context context-type="linenumber">136</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -359,7 +387,7 @@
<source>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.</source> <source>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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">135</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="needs-translation">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.</target> <target state="needs-translation">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.</target>
</trans-unit> </trans-unit>
@ -367,7 +395,7 @@
<source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source> <source>The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">157</context>
</context-group> </context-group>
<target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target> <target state="needs-translation">The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.</target>
</trans-unit> </trans-unit>
@ -375,7 +403,7 @@
<source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source> <source>Any combination of filters can be saved as a &apos;view&apos; which can then be displayed on the dashboard and / or sidebar.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target> <target state="needs-translation">Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.</target>
</trans-unit> </trans-unit>
@ -383,7 +411,7 @@
<source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source> <source>Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">157</context> <context context-type="linenumber">176</context>
</context-group> </context-group>
<target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target> <target state="needs-translation">Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.</target>
</trans-unit> </trans-unit>
@ -391,7 +419,7 @@
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source> <source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">185</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target> <target state="needs-translation">File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</target>
</trans-unit> </trans-unit>
@ -399,7 +427,7 @@
<source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source> <source>Check out the settings for various tweaks to the web app or to toggle settings for saved views.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target> <target state="needs-translation">Check out the settings for various tweaks to the web app or to toggle settings for saved views.</target>
</trans-unit> </trans-unit>
@ -407,7 +435,7 @@
<source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source> <source>The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">175</context> <context context-type="linenumber">203</context>
</context-group> </context-group>
<target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target> <target state="needs-translation">The Admin area contains more advanced controls as well as the settings for automatic e-mail fetching.</target>
</trans-unit> </trans-unit>
@ -415,7 +443,7 @@
<source>Thank you! 🙏</source> <source>Thank you! 🙏</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context> <context context-type="linenumber">211</context>
</context-group> </context-group>
<target state="needs-translation">Thank you! 🙏</target> <target state="needs-translation">Thank you! 🙏</target>
</trans-unit> </trans-unit>
@ -423,7 +451,7 @@
<source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source> <source>There are &lt;em&gt;tons&lt;/em&gt; more features and info we didn&apos;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.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">213</context>
</context-group> </context-group>
<target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target> <target state="needs-translation">There are &lt;em&gt;tons&lt;/em&gt; 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.</target>
</trans-unit> </trans-unit>
@ -431,7 +459,7 @@
<source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source> <source>Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">184</context> <context context-type="linenumber">215</context>
</context-group> </context-group>
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target> <target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
</trans-unit> </trans-unit>
@ -439,7 +467,7 @@
<source>Initiating upload...</source> <source>Initiating upload...</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context> <context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">230</context> <context context-type="linenumber">264</context>
</context-group> </context-group>
<target state="translated">正在初始化上传...</target> <target state="translated">正在初始化上传...</target>
</trans-unit> </trans-unit>
@ -464,7 +492,7 @@
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source> <source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">39</context>
</context-group> </context-group>
<target state="translated">登录为 <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target> <target state="translated">登录为 <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></target>
</trans-unit> </trans-unit>
@ -472,15 +500,15 @@
<source>Settings</source> <source>Settings</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">45</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">166</context> <context context-type="linenumber">171</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">169</context> <context context-type="linenumber">174</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -492,7 +520,7 @@
<source>Logout</source> <source>Logout</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">退出</target> <target state="translated">退出</target>
</trans-unit> </trans-unit>
@ -500,11 +528,11 @@
<source>Dashboard</source> <source>Dashboard</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">64</context> <context context-type="linenumber">69</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">67</context> <context context-type="linenumber">72</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/components/dashboard/dashboard.component.html</context>
@ -516,11 +544,11 @@
<source>Documents</source> <source>Documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">71</context> <context context-type="linenumber">76</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">79</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context> <context context-type="sourcefile">src/app/components/document-list/document-list.component.ts</context>
@ -548,7 +576,7 @@
<source>Saved views</source> <source>Saved views</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">80</context> <context context-type="linenumber">85</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context> <context context-type="sourcefile">src/app/components/manage/settings/settings.component.html</context>
@ -560,7 +588,7 @@
<source>Open documents</source> <source>Open documents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">94</context> <context context-type="linenumber">99</context>
</context-group> </context-group>
<target state="translated">打开文档</target> <target state="translated">打开文档</target>
</trans-unit> </trans-unit>
@ -568,11 +596,11 @@
<source>Close all</source> <source>Close all</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">110</context> <context context-type="linenumber">115</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">113</context> <context context-type="linenumber">118</context>
</context-group> </context-group>
<target state="translated">全部关闭</target> <target state="translated">全部关闭</target>
</trans-unit> </trans-unit>
@ -580,7 +608,7 @@
<source>Manage</source> <source>Manage</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">119</context> <context context-type="linenumber">124</context>
</context-group> </context-group>
<target state="translated">管理</target> <target state="translated">管理</target>
</trans-unit> </trans-unit>
@ -588,11 +616,11 @@
<source>Correspondents</source> <source>Correspondents</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">123</context> <context context-type="linenumber">128</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">126</context> <context context-type="linenumber">131</context>
</context-group> </context-group>
<target state="translated">联系人</target> <target state="translated">联系人</target>
</trans-unit> </trans-unit>
@ -600,11 +628,11 @@
<source>Tags</source> <source>Tags</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">130</context> <context context-type="linenumber">135</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">133</context> <context context-type="linenumber">138</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context> <context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
@ -616,7 +644,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">22</context> <context context-type="linenumber">27</context>
</context-group> </context-group>
<target state="translated">标签</target> <target state="translated">标签</target>
</trans-unit> </trans-unit>
@ -624,11 +652,11 @@
<source>Document types</source> <source>Document types</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">142</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">140</context> <context context-type="linenumber">145</context>
</context-group> </context-group>
<target state="translated">文档类型</target> <target state="translated">文档类型</target>
</trans-unit> </trans-unit>
@ -636,11 +664,11 @@
<source>Storage paths</source> <source>Storage paths</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">144</context> <context context-type="linenumber">149</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">147</context> <context context-type="linenumber">152</context>
</context-group> </context-group>
<target state="translated">保存路径</target> <target state="translated">保存路径</target>
</trans-unit> </trans-unit>
@ -648,7 +676,7 @@
<source>File Tasks</source> <source>File Tasks</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">151</context> <context context-type="linenumber">156</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -660,7 +688,7 @@
<source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source>File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">155</context> <context context-type="linenumber">160</context>
</context-group> </context-group>
<target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target> <target state="needs-translation">File Tasks<x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span *ngIf=&quot;tasksService.failedFileTasks.length &gt; 0&quot;&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></target>
</trans-unit> </trans-unit>
@ -668,11 +696,11 @@
<source>Logs</source> <source>Logs</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">159</context> <context context-type="linenumber">164</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">162</context> <context context-type="linenumber">167</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context> <context context-type="sourcefile">src/app/components/manage/logs/logs.component.html</context>
@ -684,11 +712,11 @@
<source>Admin</source> <source>Admin</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">173</context> <context context-type="linenumber">178</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">176</context> <context context-type="linenumber">181</context>
</context-group> </context-group>
<target state="translated">后台管理</target> <target state="translated">后台管理</target>
</trans-unit> </trans-unit>
@ -696,7 +724,7 @@
<source>Info</source> <source>Info</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">182</context> <context context-type="linenumber">187</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -708,11 +736,11 @@
<source>Documentation</source> <source>Documentation</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">186</context> <context context-type="linenumber">191</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">189</context> <context context-type="linenumber">194</context>
</context-group> </context-group>
<target state="translated">帮助文档</target> <target state="translated">帮助文档</target>
</trans-unit> </trans-unit>
@ -720,11 +748,11 @@
<source>GitHub</source> <source>GitHub</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">194</context> <context context-type="linenumber">199</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">197</context> <context context-type="linenumber">202</context>
</context-group> </context-group>
<target state="translated">GitHub</target> <target state="translated">GitHub</target>
</trans-unit> </trans-unit>
@ -732,11 +760,11 @@
<source>Suggest an idea</source> <source>Suggest an idea</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">199</context> <context context-type="linenumber">204</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">203</context> <context context-type="linenumber">208</context>
</context-group> </context-group>
<target state="translated">提出建议</target> <target state="translated">提出建议</target>
</trans-unit> </trans-unit>
@ -744,7 +772,7 @@
<source>is available.</source> <source>is available.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">可用</target> <target state="translated">可用</target>
</trans-unit> </trans-unit>
@ -752,7 +780,7 @@
<source>Click to view.</source> <source>Click to view.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">212</context> <context context-type="linenumber">217</context>
</context-group> </context-group>
<target state="translated">点击查看</target> <target state="translated">点击查看</target>
</trans-unit> </trans-unit>
@ -760,7 +788,7 @@
<source>Paperless-ngx can automatically check for updates</source> <source>Paperless-ngx can automatically check for updates</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">216</context> <context context-type="linenumber">221</context>
</context-group> </context-group>
<target state="needs-translation">Paperless-ngx can automatically check for updates</target> <target state="needs-translation">Paperless-ngx can automatically check for updates</target>
</trans-unit> </trans-unit>
@ -768,7 +796,7 @@
<source> How does this work? </source> <source> How does this work? </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">223,225</context> <context context-type="linenumber">228,230</context>
</context-group> </context-group>
<target state="needs-translation"> How does this work? </target> <target state="needs-translation"> How does this work? </target>
</trans-unit> </trans-unit>
@ -776,7 +804,7 @@
<source>Update available</source> <source>Update available</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">234</context> <context context-type="linenumber">239</context>
</context-group> </context-group>
<target state="translated">有可用更新</target> <target state="translated">有可用更新</target>
</trans-unit> </trans-unit>
@ -796,10 +824,26 @@
<source>An error occurred while saving update checking settings.</source> <source>An error occurred while saving update checking settings.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context> <context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">202</context> <context context-type="linenumber">216</context>
</context-group> </context-group>
<target state="needs-translation">An error occurred while saving update checking settings.</target> <target state="needs-translation">An error occurred while saving update checking settings.</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/clearable-badge/clearable-badge.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">24</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">清除</target>
</trans-unit>
<trans-unit id="5000042972069710005" datatype="html"> <trans-unit id="5000042972069710005" datatype="html">
<source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source> <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;d-inline-block&quot; style=&quot;padding-bottom: 1px;&quot; &gt;"/>Cancel<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/></source>
<context-group purpose="location"> <context-group purpose="location">
@ -844,27 +888,15 @@
<source>After</source> <source>After</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">19</context>
</context-group> </context-group>
<target state="translated">之后</target> <target state="translated">之后</target>
</trans-unit> </trans-unit>
<trans-unit id="8700121026680200191" datatype="html">
<source>Clear</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">26</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">清除</target>
</trans-unit>
<trans-unit id="1218334388194408974" datatype="html"> <trans-unit id="1218334388194408974" datatype="html">
<source>Before</source> <source>Before</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/date-dropdown/date-dropdown.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<target state="translated">之前</target> <target state="translated">之前</target>
</trans-unit> </trans-unit>
@ -1252,7 +1284,7 @@
<source>All</source> <source>All</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">16</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
@ -1264,7 +1296,7 @@
<source>Any</source> <source>Any</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">18</context>
</context-group> </context-group>
<target state="translated">所有</target> <target state="translated">所有</target>
</trans-unit> </trans-unit>
@ -1272,7 +1304,7 @@
<source>Apply</source> <source>Apply</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">32</context>
</context-group> </context-group>
<target state="translated">应用</target> <target state="translated">应用</target>
</trans-unit> </trans-unit>
@ -1280,7 +1312,7 @@
<source>Click again to exclude items.</source> <source>Click again to exclude items.</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context> <context context-type="sourcefile">src/app/components/common/filterable-dropdown/filterable-dropdown.component.html</context>
<context context-type="linenumber">43</context> <context context-type="linenumber">38</context>
</context-group> </context-group>
<target state="translated">再次单击以排除项目。</target> <target state="translated">再次单击以排除项目。</target>
</trans-unit> </trans-unit>
@ -1422,7 +1454,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">54</context> <context context-type="linenumber">59</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context> <context context-type="sourcefile">src/app/components/manage/tasks/tasks.component.html</context>
@ -1789,14 +1821,6 @@
</context-group> </context-group>
<target state="translated">上一个</target> <target state="translated">上一个</target>
</trans-unit> </trans-unit>
<trans-unit id="3885497195825665706" datatype="html">
<source>Next</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
<context context-type="linenumber">55</context>
</context-group>
<target state="translated">下一个</target>
</trans-unit>
<trans-unit id="5028777105388019087" datatype="html"> <trans-unit id="5028777105388019087" datatype="html">
<source>Details</source> <source>Details</source>
<context-group purpose="location"> <context-group purpose="location">
@ -1837,7 +1861,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">35</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1861,7 +1885,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">42</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -1885,7 +1909,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">44</context> <context context-type="linenumber">49</context>
</context-group> </context-group>
<target state="translated">保存路径</target> <target state="translated">保存路径</target>
</trans-unit> </trans-unit>
@ -2177,7 +2201,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">23</context> <context context-type="linenumber">28</context>
</context-group> </context-group>
<target state="translated">过滤器标签</target> <target state="translated">过滤器标签</target>
</trans-unit> </trans-unit>
@ -2189,7 +2213,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">36</context>
</context-group> </context-group>
<target state="translated">过滤联系人</target> <target state="translated">过滤联系人</target>
</trans-unit> </trans-unit>
@ -2201,7 +2225,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">43</context>
</context-group> </context-group>
<target state="translated">过滤文档类型</target> <target state="translated">过滤文档类型</target>
</trans-unit> </trans-unit>
@ -2213,7 +2237,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">45</context> <context context-type="linenumber">50</context>
</context-group> </context-group>
<target state="translated">筛选存储路径</target> <target state="translated">筛选存储路径</target>
</trans-unit> </trans-unit>
@ -2743,7 +2767,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">60</context> <context context-type="linenumber">65</context>
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/services/rest/document.service.ts</context> <context context-type="sourcefile">src/app/services/rest/document.service.ts</context>
@ -2779,7 +2803,7 @@
<source>Reset filters</source> <source>Reset filters</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context> <context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">73</context> <context context-type="linenumber">78</context>
</context-group> </context-group>
<target state="translated">重置过滤器</target> <target state="translated">重置过滤器</target>
</trans-unit> </trans-unit>

View File

@ -2,7 +2,8 @@ import datetime
import hashlib import hashlib
import os import os
import uuid import uuid
from subprocess import Popen from subprocess import CompletedProcess
from subprocess import run
from typing import Optional from typing import Optional
from typing import Type from typing import Type
@ -148,13 +149,20 @@ class Consumer(LoggingMixin):
script_env["DOCUMENT_SOURCE_PATH"] = filepath_arg script_env["DOCUMENT_SOURCE_PATH"] = filepath_arg
try: try:
Popen( completed_proc = run(
( args=[
settings.PRE_CONSUME_SCRIPT, settings.PRE_CONSUME_SCRIPT,
filepath_arg, filepath_arg,
), ],
env=script_env, 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: except Exception as e:
self._fail( self._fail(
MESSAGE_PRE_CONSUME_SCRIPT_ERROR, MESSAGE_PRE_CONSUME_SCRIPT_ERROR,
@ -208,8 +216,8 @@ class Consumer(LoggingMixin):
script_env["DOCUMENT_ORIGINAL_FILENAME"] = str(document.original_filename) script_env["DOCUMENT_ORIGINAL_FILENAME"] = str(document.original_filename)
try: try:
Popen( completed_proc = run(
( args=[
settings.POST_CONSUME_SCRIPT, settings.POST_CONSUME_SCRIPT,
str(document.pk), str(document.pk),
document.get_public_filename(), document.get_public_filename(),
@ -219,9 +227,16 @@ class Consumer(LoggingMixin):
reverse("document-thumb", kwargs={"pk": document.pk}), reverse("document-thumb", kwargs={"pk": document.pk}),
str(document.correspondent), str(document.correspondent),
str(",".join(document.tags.all().values_list("name", flat=True))), str(",".join(document.tags.all().values_list("name", flat=True))),
), ],
env=script_env, 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: except Exception as e:
self._fail( self._fail(
MESSAGE_POST_CONSUME_SCRIPT_ERROR, MESSAGE_POST_CONSUME_SCRIPT_ERROR,
@ -444,7 +459,12 @@ class Consumer(LoggingMixin):
return document 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. # 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(source, "rb") as read_file:
with open(target, "wb") as write_file: with open(target, "wb") as write_file:
write_file.write(read_file.read()) 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)

View File

@ -260,7 +260,7 @@ def parse_date_generator(filename, text) -> Iterator[datetime.datetime]:
try: try:
date = __parser(date_string, date_order) date = __parser(date_string, date_order)
except (TypeError, ValueError): except Exception:
# Skip all matches that do not parse to a proper date # Skip all matches that do not parse to a proper date
date = None date = None

View File

@ -447,7 +447,8 @@ def update_filename_and_move_files(sender, instance, **kwargs):
archive_filename=instance.archive_filename, 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: # This happens when either:
# - moving the files failed due to file system errors # - moving the files failed due to file system errors
# - saving to the database failed due to database 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 to move files to their original location.
try: try:
if move_original and os.path.isfile(instance.source_path): if move_original and os.path.isfile(instance.source_path):
logger.info("Restoring previous original path")
os.rename(instance.source_path, old_source_path) os.rename(instance.source_path, old_source_path)
if move_archive and os.path.isfile(instance.archive_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) os.rename(instance.archive_path, old_archive_path)
except Exception: 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. # issue that's going to get caught by the santiy checker.
# All files remain in place and will never be overwritten, # All files remain in place and will never be overwritten,
# so this is not the end of the world. # 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. # anyway.
pass pass

View File

@ -3,6 +3,7 @@ import logging
import os import os
import shutil import shutil
import uuid import uuid
from datetime import datetime
from pathlib import Path from pathlib import Path
from typing import Type from typing import Type
@ -98,6 +99,14 @@ def consume_file(
path = Path(path).resolve() 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 # check for separators in current document
if settings.CONSUMER_ENABLE_BARCODES: if settings.CONSUMER_ENABLE_BARCODES:

View File

@ -2,7 +2,9 @@ import datetime
import os import os
import re import re
import shutil import shutil
import stat
import tempfile import tempfile
from subprocess import CalledProcessError
from unittest import mock from unittest import mock
from unittest.mock import MagicMock from unittest.mock import MagicMock
@ -801,7 +803,16 @@ class TestConsumerCreatedDate(DirectoriesMixin, TestCase):
class PreConsumeTestCase(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) @override_settings(PRE_CONSUME_SCRIPT=None)
def test_no_pre_consume_script(self, m): def test_no_pre_consume_script(self, m):
c = Consumer() c = Consumer()
@ -809,7 +820,7 @@ class PreConsumeTestCase(TestCase):
c.run_pre_consume_script() c.run_pre_consume_script()
m.assert_not_called() m.assert_not_called()
@mock.patch("documents.consumer.Popen") @mock.patch("documents.consumer.run")
@mock.patch("documents.consumer.Consumer._send_progress") @mock.patch("documents.consumer.Consumer._send_progress")
@override_settings(PRE_CONSUME_SCRIPT="does-not-exist") @override_settings(PRE_CONSUME_SCRIPT="does-not-exist")
def test_pre_consume_script_not_found(self, m, m2): def test_pre_consume_script_not_found(self, m, m2):
@ -818,7 +829,7 @@ class PreConsumeTestCase(TestCase):
c.path = "path-to-file" c.path = "path-to-file"
self.assertRaises(ConsumerError, c.run_pre_consume_script) 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): def test_pre_consume_script(self, m):
with tempfile.NamedTemporaryFile() as script: with tempfile.NamedTemporaryFile() as script:
with override_settings(PRE_CONSUME_SCRIPT=script.name): with override_settings(PRE_CONSUME_SCRIPT=script.name):
@ -830,14 +841,78 @@ class PreConsumeTestCase(TestCase):
args, kwargs = m.call_args args, kwargs = m.call_args
command = args[0] command = kwargs["args"]
self.assertEqual(command[0], script.name) self.assertEqual(command[0], script.name)
self.assertEqual(command[1], "path-to-file") 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): 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) @override_settings(POST_CONSUME_SCRIPT=None)
def test_no_post_consume_script(self, m): def test_no_post_consume_script(self, m):
doc = Document.objects.create(title="Test", mime_type="application/pdf") doc = Document.objects.create(title="Test", mime_type="application/pdf")
@ -858,7 +933,7 @@ class PostConsumeTestCase(TestCase):
c.filename = "somefile.pdf" c.filename = "somefile.pdf"
self.assertRaises(ConsumerError, c.run_post_consume_script, doc) 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): def test_post_consume_script_simple(self, m):
with tempfile.NamedTemporaryFile() as script: with tempfile.NamedTemporaryFile() as script:
with override_settings(POST_CONSUME_SCRIPT=script.name): with override_settings(POST_CONSUME_SCRIPT=script.name):
@ -868,7 +943,7 @@ class PostConsumeTestCase(TestCase):
m.assert_called_once() m.assert_called_once()
@mock.patch("documents.consumer.Popen") @mock.patch("documents.consumer.run")
def test_post_consume_script_with_correspondent(self, m): def test_post_consume_script_with_correspondent(self, m):
with tempfile.NamedTemporaryFile() as script: with tempfile.NamedTemporaryFile() as script:
with override_settings(POST_CONSUME_SCRIPT=script.name): with override_settings(POST_CONSUME_SCRIPT=script.name):
@ -889,7 +964,7 @@ class PostConsumeTestCase(TestCase):
args, kwargs = m.call_args args, kwargs = m.call_args
command = args[0] command = kwargs["args"]
self.assertEqual(command[0], script.name) self.assertEqual(command[0], script.name)
self.assertEqual(command[1], str(doc.pk)) 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[6], f"/api/documents/{doc.pk}/thumb/")
self.assertEqual(command[7], "my_bank") self.assertEqual(command[7], "my_bank")
self.assertCountEqual(command[8].split(","), ["a", "b"]) 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)

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-10-16 13:46\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Belarusian\n" "Language-Team: Belarusian\n"
"Language: be_BY\n" "Language: be_BY\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Дакументы" msgstr "Дакументы"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Любое слова" msgstr "Любое слова"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Усе словы" msgstr "Усе словы"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Дакладнае супадзенне" msgstr "Дакладнае супадзенне"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Рэгулярны выраз" msgstr "Рэгулярны выраз"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Невыразнае слова" msgstr "Невыразнае слова"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Аўтаматычна" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "назва" msgstr "назва"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "супадзенне" msgstr "супадзенне"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "алгарытм супастаўлення" msgstr "алгарытм супастаўлення"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "без уліку рэгістра" msgstr "без уліку рэгістра"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "карэспандэнт" msgstr "карэспандэнт"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "карэспандэнты" msgstr "карэспандэнты"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "колер" msgstr "колер"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "гэта ўваходны тэг" 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." msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Пазначыць гэты тэг як тэг папкі \"Уваходныя\": Усе нядаўна спажытыя дакументы будуць пазначаны тэгамі \"Уваходныя\"." msgstr "Пазначыць гэты тэг як тэг папкі \"Уваходныя\": Усе нядаўна спажытыя дакументы будуць пазначаны тэгамі \"Уваходныя\"."
#: documents/models.py:78 #: documents/models.py:81
msgid "tag" msgid "tag"
msgstr "тэг" msgstr "тэг"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "тэгі" msgstr "тэгі"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "тып дакумента" msgstr "тып дакумента"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "тыпы дакументаў" msgstr "тыпы дакументаў"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "шлях" msgstr "шлях"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "шлях захоўвання" msgstr "шлях захоўвання"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "шляхі захоўвання" msgstr "шляхі захоўвання"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Незашыфраваны" msgstr "Незашыфраваны"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Зашыфравана з дапамогай GNU Privacy Guard" msgstr "Зашыфравана з дапамогай GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "назва" msgstr "назва"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "змест" 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." msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Неапрацаваныя тэкставыя даныя дакумента. Гэта поле ў асноўным выкарыстоўваецца для пошуку." msgstr "Неапрацаваныя тэкставыя даныя дакумента. Гэта поле ў асноўным выкарыстоўваецца для пошуку."
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "тып MIME" msgstr "тып MIME"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "кантрольная сума" msgstr "кантрольная сума"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Кантрольная сума зыходнага дакумента." msgstr "Кантрольная сума зыходнага дакумента."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "кантрольная сума архіва" msgstr "кантрольная сума архіва"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Кантрольная сума архіўнага дакумента." 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" msgid "created"
msgstr "створаны" msgstr "створаны"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "мадыфікаваны" msgstr "мадыфікаваны"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "тып захоўвання" msgstr "тып захоўвання"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "дададзена" msgstr "дададзена"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "імя файла" msgstr "імя файла"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Цяперашняе імя файла ў сховішчы" msgstr "Цяперашняе імя файла ў сховішчы"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "імя файла архіва" msgstr "імя файла архіва"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Цяперашняе імя файла архіва ў сховішчы" 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" msgid "archive serial number"
msgstr "парадкавы нумар архіва" msgstr "парадкавы нумар архіва"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Пазіцыя гэтага дакумента ў вашым фізічным архіве дакументаў." msgstr "Пазіцыя гэтага дакумента ў вашым фізічным архіве дакументаў."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "дакумент" msgstr "дакумент"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "дакументы" msgstr "дакументы"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "адладка" msgstr "адладка"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "інфармацыя" msgstr "інфармацыя"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "папярэджанне" msgstr "папярэджанне"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "памылка" msgstr "памылка"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "крытычны" msgstr "крытычны"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "група" msgstr "група"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "паведамленне" msgstr "паведамленне"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "узровень" msgstr "узровень"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "лог" msgstr "лог"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "логі" msgstr "логі"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "захаваны выгляд" msgstr "захаваны выгляд"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "захаваныя выгляды" msgstr "захаваныя выгляды"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "карыстальнік" msgstr "карыстальнік"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "паказаць на панэлі" msgstr "паказаць на панэлі"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "паказаць у бакавой панэлі" msgstr "паказаць у бакавой панэлі"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "поле сартавання" msgstr "поле сартавання"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "сартаваць у адваротным парадку" msgstr "сартаваць у адваротным парадку"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "назва змяшчае" msgstr "назва змяшчае"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "змест змяшчае" msgstr "змест змяшчае"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN" msgstr "ASN"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "карэспандэнт" msgstr "карэспандэнт"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "тып дакумента" msgstr "тып дакумента"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "ва ўваходных" msgstr "ва ўваходных"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "мае тэг" msgstr "мае тэг"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "мае любы тэг" msgstr "мае любы тэг"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "створана перад" msgstr "створана перад"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "створана пасля" msgstr "створана пасля"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "год стварэння" msgstr "год стварэння"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "месяц стварэння" msgstr "месяц стварэння"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "дзень стварэння" msgstr "дзень стварэння"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "даданы перад" msgstr "даданы перад"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "даданы пасля" msgstr "даданы пасля"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "зменены перад" msgstr "зменены перад"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "зменены пасля" msgstr "зменены пасля"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "не мае тэга" msgstr "не мае тэга"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "не мае ASN" msgstr "не мае ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "назва або змест смяшчае" msgstr "назва або змест смяшчае"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "поўнатэкставы запыт" msgstr "поўнатэкставы запыт"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "больш падобнага" msgstr "больш падобнага"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "мае тэгі ў" 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" msgid "rule type"
msgstr "тып правіла" msgstr "тып правіла"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "значэнне" msgstr "значэнне"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "правіла фільтрацыі" msgstr "правіла фільтрацыі"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "правілы фільтрацыі" msgstr "правілы фільтрацыі"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "пачата" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Няправільны рэгулярны выраз: %(error)s" msgstr "Няправільны рэгулярны выраз: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Няправільны колер." msgstr "Няправільны колер."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Тып файла %(type)s не падтрымліваецца" msgstr "Тып файла %(type)s не падтрымліваецца"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Выяўлена няправільная зменная." msgstr "Выяўлена няправільная зменная."
@ -444,87 +556,87 @@ msgstr "Пароль"
msgid "Sign in" msgid "Sign in"
msgstr "Увайсці" msgstr "Увайсці"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Англійская (ЗША)" msgstr "Англійская (ЗША)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Беларуская" msgstr "Беларуская"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Чэшская" msgstr "Чэшская"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Дацкая" msgstr "Дацкая"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Нямецкая" msgstr "Нямецкая"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Англійская (Вялікабрытанія)" msgstr "Англійская (Вялікабрытанія)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Іспанская" msgstr "Іспанская"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Французская" msgstr "Французская"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Італьянская" msgstr "Італьянская"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Люксембургская" msgstr "Люксембургская"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Нідэрландская" msgstr "Нідэрландская"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Польская" msgstr "Польская"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Партугальская (Бразілія)" msgstr "Партугальская (Бразілія)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Партугальская" msgstr "Партугальская"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Румынская" msgstr "Румынская"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Руская" msgstr "Руская"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Славенская" msgstr "Славенская"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Сербская" msgstr "Сербская"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Шведская" msgstr "Шведская"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Турэцкая" msgstr "Турэцкая"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Кітайская спрошчаная" msgstr "Кітайская спрошчаная"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-10-18 20:06\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Language: cs_CZ\n" "Language: cs_CZ\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenty" msgstr "Dokumenty"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Jakékoliv slovo" msgstr "Jakékoliv slovo"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Všechna slova" msgstr "Všechna slova"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Přesná shoda" msgstr "Přesná shoda"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regulární výraz" msgstr "Regulární výraz"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Fuzzy slovo" msgstr "Fuzzy slovo"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatický" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "název" msgstr "název"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "shoda" msgstr "shoda"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritmus pro shodu" msgstr "algoritmus pro shodu"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "je ignorováno" msgstr "je ignorováno"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "korespondent" msgstr "korespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korespondenti" msgstr "korespondenti"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "barva" msgstr "barva"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "tag přichozí" 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." 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í" 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" msgid "tag"
msgstr "tagy" msgstr "tagy"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "tagy" msgstr "tagy"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "typ dokumentu" msgstr "typ dokumentu"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "typy dokumentu" msgstr "typy dokumentu"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "cesta" msgstr "cesta"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "cesta k úložišti" msgstr "cesta k úložišti"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "cesta k úložišti" msgstr "cesta k úložišti"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Nešifrované" msgstr "Nešifrované"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrované pomocí GNU Privacy Guard" msgstr "Šifrované pomocí GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titulek" msgstr "titulek"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "obsah" 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." 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í." 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" msgid "mime type"
msgstr "mime typ" msgstr "mime typ"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrolní součet" msgstr "kontrolní součet"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrolní součet původního dokumentu" msgstr "Kontrolní součet původního dokumentu"
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "kontrolní součet archivu" msgstr "kontrolní součet archivu"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrolní součet archivovaného dokumentu." 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" msgid "created"
msgstr "vytvořeno" msgstr "vytvořeno"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "upraveno" msgstr "upraveno"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "typ úložiště" msgstr "typ úložiště"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "přidáno" msgstr "přidáno"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "název souboru" msgstr "název souboru"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Aktuální název souboru v úložišti" msgstr "Aktuální název souboru v úložišti"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "Název archivovaného souboru" msgstr "Název archivovaného souboru"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Aktuální název souboru archivu v úložišti" 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" msgid "archive serial number"
msgstr "sériové číslo archivu" msgstr "sériové číslo archivu"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Pozice dokumentu ve vašem archivu fyzických dokumentů" msgstr "Pozice dokumentu ve vašem archivu fyzických dokumentů"
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenty" msgstr "dokumenty"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "ladění" msgstr "ladění"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informace" msgstr "informace"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "varování" msgstr "varování"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "chyba" msgstr "chyba"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritická" msgstr "kritická"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "skupina" msgstr "skupina"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "zpráva" msgstr "zpráva"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "úroveň" msgstr "úroveň"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "záznam" msgstr "záznam"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "záznamy" msgstr "záznamy"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "uložený pohled" msgstr "uložený pohled"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "uložené pohledy" msgstr "uložené pohledy"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "uživatel" msgstr "uživatel"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "zobrazit v dashboardu" msgstr "zobrazit v dashboardu"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "zobrazit v postranním menu" msgstr "zobrazit v postranním menu"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "pole na řazení" msgstr "pole na řazení"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "třídit opačně" msgstr "třídit opačně"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "titulek obsahuje" msgstr "titulek obsahuje"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "obsah obsahuje" msgstr "obsah obsahuje"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN je" msgstr "ASN je"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "korespondent je" msgstr "korespondent je"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "typ dokumentu je" msgstr "typ dokumentu je"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "je v příchozích" msgstr "je v příchozích"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "má tag" msgstr "má tag"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "má jakýkoliv tag" msgstr "má jakýkoliv tag"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "vytvořeno před" msgstr "vytvořeno před"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "vytvořeno po" msgstr "vytvořeno po"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "rok vytvoření je" msgstr "rok vytvoření je"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "měsíc vytvoření je" msgstr "měsíc vytvoření je"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "den vytvoření je" msgstr "den vytvoření je"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "přidáno před" msgstr "přidáno před"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "přidáno po" msgstr "přidáno po"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "upraveno před" msgstr "upraveno před"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "upraveno po" msgstr "upraveno po"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "nemá tag" msgstr "nemá tag"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "Nemá ASN" msgstr "Nemá ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "Titulek nebo obsah obsahuje" msgstr "Titulek nebo obsah obsahuje"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "Fulltextový dotaz" msgstr "Fulltextový dotaz"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "Podobné" msgstr "Podobné"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "má značky v" 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" msgid "rule type"
msgstr "typ pravidla" msgstr "typ pravidla"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "hodnota" msgstr "hodnota"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtrovací pravidlo" msgstr "filtrovací pravidlo"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtrovací pravidla" msgstr "filtrovací pravidla"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "zahájeno" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Neplatný regulární výraz: %(error)s" msgstr "Neplatný regulární výraz: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Neplatná barva." msgstr "Neplatná barva."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Typ souboru %(type)s není podporován" msgstr "Typ souboru %(type)s není podporován"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Zjištěna neplatná proměnná." msgstr "Zjištěna neplatná proměnná."
@ -444,87 +556,87 @@ msgstr "Heslo"
msgid "Sign in" msgid "Sign in"
msgstr "Přihlásit se" msgstr "Přihlásit se"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Angličtina (US)" msgstr "Angličtina (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Běloruština" msgstr "Běloruština"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Čeština" msgstr "Čeština"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dánština" msgstr "Dánština"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Němčina" msgstr "Němčina"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Angličtina (GB)" msgstr "Angličtina (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Španělština" msgstr "Španělština"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francouzština" msgstr "Francouzština"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italština" msgstr "Italština"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Lucemburština" msgstr "Lucemburština"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Holandština" msgstr "Holandština"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polština" msgstr "Polština"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugalština (Brazílie)" msgstr "Portugalština (Brazílie)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugalština" msgstr "Portugalština"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumunština" msgstr "Rumunština"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ruština" msgstr "Ruština"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovinština" msgstr "Slovinština"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Srbština" msgstr "Srbština"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Švédština" msgstr "Švédština"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turečtina" msgstr "Turečtina"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Čínština (zjednodušená)" msgstr "Čínština (zjednodušená)"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
"Language: da_DK\n" "Language: da_DK\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Ethvert ord" msgstr "Ethvert ord"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Alle ord" msgstr "Alle ord"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Præcis match" msgstr "Præcis match"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regulær udtryk" msgstr "Regulær udtryk"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Tilnærmet ord" msgstr "Tilnærmet ord"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatisk" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "navn" msgstr "navn"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "match" msgstr "match"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "matching algoritme" msgstr "matching algoritme"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "er usensitiv" msgstr "er usensitiv"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "korrespondent" msgstr "korrespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korrespondenter" msgstr "korrespondenter"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "farve" msgstr "farve"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "er indbakkeetiket" 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." 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." 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" msgid "tag"
msgstr "etiket" msgstr "etiket"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiketter" msgstr "etiketter"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "dokumenttype" msgstr "dokumenttype"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "dokumenttyper" msgstr "dokumenttyper"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Ukrypteret" msgstr "Ukrypteret"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Krypteret med GNU Privacy Guard" msgstr "Krypteret med GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titel" msgstr "titel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "indhold" 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." 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." msgstr "Dokumentets rå tekstdata. Dette felt bruges primært til søgning."
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "MIME-type" msgstr "MIME-type"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrolsum" msgstr "kontrolsum"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrolsummen af det oprindelige dokument." msgstr "Kontrolsummen af det oprindelige dokument."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arkiv kontrolsum" msgstr "arkiv kontrolsum"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrolsummen af det arkiverede dokument." 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" msgid "created"
msgstr "oprettet" msgstr "oprettet"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "ændret" msgstr "ændret"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "lagringstype" msgstr "lagringstype"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "tilføjet" msgstr "tilføjet"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "filnavn" msgstr "filnavn"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nuværende filnavn lagret" msgstr "Nuværende filnavn lagret"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "arkiv filnavn" msgstr "arkiv filnavn"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nuværende arkivfilnavn lagret" 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" msgid "archive serial number"
msgstr "arkiv serienummer" msgstr "arkiv serienummer"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Placeringen af dette dokument i dit fysiske dokumentarkiv." msgstr "Placeringen af dette dokument i dit fysiske dokumentarkiv."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenter" msgstr "dokumenter"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "fejlfinding" msgstr "fejlfinding"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "information" msgstr "information"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "advarsel" msgstr "advarsel"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "fejl" msgstr "fejl"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritisk" msgstr "kritisk"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "gruppe" msgstr "gruppe"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "besked" msgstr "besked"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "niveau" msgstr "niveau"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "log" msgstr "log"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logninger" msgstr "logninger"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "gemt visning" msgstr "gemt visning"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "gemte visninger" msgstr "gemte visninger"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "bruger" msgstr "bruger"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "vis på betjeningspanel" msgstr "vis på betjeningspanel"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "vis i sidepanelet" msgstr "vis i sidepanelet"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sortér felt" msgstr "sortér felt"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "sortér omvendt" msgstr "sortér omvendt"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "titel indeholder" msgstr "titel indeholder"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "indhold indeholder" msgstr "indhold indeholder"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN er" msgstr "ASN er"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "korrespondent er" msgstr "korrespondent er"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "dokumenttype er" msgstr "dokumenttype er"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "er i indbakke" msgstr "er i indbakke"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "har etiket" msgstr "har etiket"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "har en etiket" msgstr "har en etiket"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "oprettet før" msgstr "oprettet før"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "oprettet efter" msgstr "oprettet efter"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "oprettet år er" msgstr "oprettet år er"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "oprettet måned er" msgstr "oprettet måned er"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "oprettet dag er" msgstr "oprettet dag er"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "tilføjet før" msgstr "tilføjet før"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "tilføjet efter" msgstr "tilføjet efter"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "ændret før" msgstr "ændret før"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "ændret efter" msgstr "ændret efter"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "har ikke nogen etiket" msgstr "har ikke nogen etiket"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "har ikke ASN" msgstr "har ikke ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "titel eller indhold indeholder" msgstr "titel eller indhold indeholder"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "fuldtekst forespørgsel" msgstr "fuldtekst forespørgsel"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mere som dette" msgstr "mere som dette"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "har etiketter i" 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" msgid "rule type"
msgstr "regeltype" msgstr "regeltype"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "værdi" msgstr "værdi"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtreringsregel" msgstr "filtreringsregel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtreringsregler" msgstr "filtreringsregler"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ugyldigt regulært udtryk: %(error)s" msgstr "Ugyldigt regulært udtryk: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ugyldig farve." msgstr "Ugyldig farve."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Filtype %(type)s understøttes ikke" msgstr "Filtype %(type)s understøttes ikke"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "" msgstr ""
@ -444,87 +556,87 @@ msgstr "Adgangskode"
msgid "Sign in" msgid "Sign in"
msgstr "Log ind" msgstr "Log ind"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engelsk (USA)" msgstr "Engelsk (USA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "" msgstr ""
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tjekkisk" msgstr "Tjekkisk"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dansk" msgstr "Dansk"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Tysk" msgstr "Tysk"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engelsk (GB)" msgstr "Engelsk (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spansk" msgstr "Spansk"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Fransk" msgstr "Fransk"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiensk" msgstr "Italiensk"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburgsk" msgstr "Luxemburgsk"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Hollandsk" msgstr "Hollandsk"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polsk" msgstr "Polsk"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasilien)" msgstr "Portugisisk (Brasilien)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugisisk" msgstr "Portugisisk"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Romansk" msgstr "Romansk"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russisk" msgstr "Russisk"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "" msgstr ""
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr ""
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Svensk" msgstr "Svensk"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "" msgstr ""
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "" msgstr ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-09-04 11:44\n" "PO-Revision-Date: 2022-11-26 20:28\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: German\n" "Language-Team: German\n"
"Language: de_DE\n" "Language: de_DE\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumente" msgstr "Dokumente"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Irgendein Wort" msgstr "Irgendein Wort"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Alle Wörter" msgstr "Alle Wörter"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Exakte Übereinstimmung" msgstr "Exakte Übereinstimmung"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regulärer Ausdruck" msgstr "Regulärer Ausdruck"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Ungenaues Wort" msgstr "Ungenaues Wort"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatisch" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "Zuweisungsmuster" msgstr "Zuweisungsmuster"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "Zuweisungsalgorithmus" msgstr "Zuweisungsalgorithmus"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "Groß-/Kleinschreibung irrelevant" msgstr "Groß-/Kleinschreibung irrelevant"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "Korrespondent" msgstr "Korrespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "Korrespondenten" msgstr "Korrespondenten"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "Farbe" msgstr "Farbe"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "Posteingangs-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." 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." 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" msgid "tag"
msgstr "Tag" msgstr "Tag"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "Tags" msgstr "Tags"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "Dokumenttyp" msgstr "Dokumenttyp"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "Dokumenttypen" msgstr "Dokumenttypen"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "Pfad" msgstr "Pfad"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "Speicherpfad" msgstr "Speicherpfad"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "Speicherpfade" msgstr "Speicherpfade"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Nicht verschlüsselt" msgstr "Nicht verschlüsselt"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Durch GNU Privacy Guard verschlüsselt" msgstr "Durch GNU Privacy Guard verschlüsselt"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "Titel" msgstr "Titel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "Inhalt" 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." 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." 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" msgid "mime type"
msgstr "MIME-Typ" msgstr "MIME-Typ"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "Prüfsumme" msgstr "Prüfsumme"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Die Prüfsumme des originalen Dokuments." msgstr "Die Prüfsumme des originalen Dokuments."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "Archiv-Prüfsumme" msgstr "Archiv-Prüfsumme"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Die Prüfsumme des archivierten Dokuments." 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" msgid "created"
msgstr "Erstellt" msgstr "Erstellt"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "Geändert" msgstr "Geändert"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "Speichertyp" msgstr "Speichertyp"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "Hinzugefügt" msgstr "Hinzugefügt"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "Dateiname" msgstr "Dateiname"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Aktueller Dateiname im Datenspeicher" msgstr "Aktueller Dateiname im Datenspeicher"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "Archiv-Dateiname" msgstr "Archiv-Dateiname"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Aktueller Dateiname im Archiv" 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" msgid "archive serial number"
msgstr "Archiv-Seriennummer" msgstr "Archiv-Seriennummer"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Die Position dieses Dokuments in Ihrem physischen Dokumentenarchiv." msgstr "Die Position dieses Dokuments in Ihrem physischen Dokumentenarchiv."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "Dokument" msgstr "Dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "Dokumente" msgstr "Dokumente"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "Debug" msgstr "Debug"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "Information" msgstr "Information"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "Warnung" msgstr "Warnung"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "Fehler" msgstr "Fehler"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "Kritisch" msgstr "Kritisch"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "Gruppe" msgstr "Gruppe"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "Nachricht" msgstr "Nachricht"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "Level" msgstr "Level"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "Protokoll" msgstr "Protokoll"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "Protokoll" msgstr "Protokoll"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "Gespeicherte Ansicht" msgstr "Gespeicherte Ansicht"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "Gespeicherte Ansichten" msgstr "Gespeicherte Ansichten"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "Benutzer" msgstr "Benutzer"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "Auf Startseite zeigen" msgstr "Auf Startseite zeigen"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "In Seitenleiste zeigen" msgstr "In Seitenleiste zeigen"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "Sortierfeld" msgstr "Sortierfeld"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "Umgekehrte Sortierung" msgstr "Umgekehrte Sortierung"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "Titel enthält" msgstr "Titel enthält"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "Inhalt enthält" msgstr "Inhalt enthält"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN ist" msgstr "ASN ist"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "Korrespondent ist" msgstr "Korrespondent ist"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "Dokumenttyp ist" msgstr "Dokumenttyp ist"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "Ist im Posteingang" msgstr "Ist im Posteingang"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "Hat Tag" msgstr "Hat Tag"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "Hat irgendein Tag" msgstr "Hat irgendein Tag"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "Ausgestellt vor" msgstr "Ausgestellt vor"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "Ausgestellt nach" msgstr "Ausgestellt nach"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "Ausgestellt im Jahr" msgstr "Ausgestellt im Jahr"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "Ausgestellt im Monat" msgstr "Ausgestellt im Monat"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "Ausgestellt am Tag" msgstr "Ausgestellt am Tag"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "Hinzugefügt vor" msgstr "Hinzugefügt vor"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "Hinzugefügt nach" msgstr "Hinzugefügt nach"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "Geändert vor" msgstr "Geändert vor"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "Geändert nach" msgstr "Geändert nach"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "Hat nicht folgendes Tag" msgstr "Hat nicht folgendes Tag"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "Dokument hat keine ASN" msgstr "Dokument hat keine ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "Titel oder Inhalt enthält" msgstr "Titel oder Inhalt enthält"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "Volltextsuche" msgstr "Volltextsuche"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "Ähnliche Dokumente" msgstr "Ähnliche Dokumente"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "hat 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" msgid "rule type"
msgstr "Regeltyp" msgstr "Regeltyp"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "Wert" msgstr "Wert"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "Filterregel" msgstr "Filterregel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "Filterregeln" msgstr "Filterregeln"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "gestartet" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ungültiger regulärer Ausdruck: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ungültige Farbe." msgstr "Ungültige Farbe."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Dateityp %(type)s nicht unterstützt" msgstr "Dateityp %(type)s nicht unterstützt"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Ungültige Variable entdeckt." msgstr "Ungültige Variable entdeckt."
@ -444,87 +556,87 @@ msgstr "Kennwort"
msgid "Sign in" msgid "Sign in"
msgstr "Anmelden" msgstr "Anmelden"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Englisch (US)" msgstr "Englisch (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Belarussisch" msgstr "Belarussisch"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tschechisch" msgstr "Tschechisch"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dänisch" msgstr "Dänisch"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Deutsch" msgstr "Deutsch"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Englisch (UK)" msgstr "Englisch (UK)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spanisch" msgstr "Spanisch"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Französisch" msgstr "Französisch"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italienisch" msgstr "Italienisch"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburgisch" msgstr "Luxemburgisch"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Niederländisch" msgstr "Niederländisch"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polnisch" msgstr "Polnisch"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugiesisch (Brasilien)" msgstr "Portugiesisch (Brasilien)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugiesisch" msgstr "Portugiesisch"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumänisch" msgstr "Rumänisch"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slowenisch" msgstr "Slowenisch"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbisch" msgstr "Serbisch"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Schwedisch" msgstr "Schwedisch"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Türkisch" msgstr "Türkisch"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Vereinfachtes Chinesisch" msgstr "Vereinfachtes Chinesisch"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Language: es_ES\n" "Language: es_ES\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Cualquier palabra" msgstr "Cualquier palabra"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Todas las palabras" msgstr "Todas las palabras"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Coincidencia exacta" msgstr "Coincidencia exacta"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Expresión regular" msgstr "Expresión regular"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Palabra borrosa" msgstr "Palabra borrosa"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automático" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nombre" msgstr "nombre"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "coincidencia" msgstr "coincidencia"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "Algoritmo de coincidencia" msgstr "Algoritmo de coincidencia"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "es insensible" msgstr "es insensible"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "interlocutor" msgstr "interlocutor"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "interlocutores" msgstr "interlocutores"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "color" msgstr "color"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "es etiqueta de bandeja" 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." 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." 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" msgid "tag"
msgstr "etiqueta" msgstr "etiqueta"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiquetas" msgstr "etiquetas"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tipo de documento" msgstr "tipo de documento"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipos de documento" msgstr "tipos de documento"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "ruta" msgstr "ruta"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "ruta de almacenamiento" msgstr "ruta de almacenamiento"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "rutas de almacenamiento" msgstr "rutas de almacenamiento"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Sin cifrar" msgstr "Sin cifrar"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Cifrado con GNU Privacy Guard" msgstr "Cifrado con GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "título" msgstr "título"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "contenido" 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." 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." 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" msgid "mime type"
msgstr "tipo MIME" msgstr "tipo MIME"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "Cadena de verificación" msgstr "Cadena de verificación"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "La cadena de verificación del documento original." msgstr "La cadena de verificación del documento original."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "cadena de comprobación del archivo" msgstr "cadena de comprobación del archivo"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "La cadena de verificación del documento archivado." 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" msgid "created"
msgstr "creado" msgstr "creado"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificado" msgstr "modificado"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tipo de almacenamiento" msgstr "tipo de almacenamiento"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "añadido" msgstr "añadido"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nombre del archivo" msgstr "nombre del archivo"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nombre de archivo actual en disco" msgstr "Nombre de archivo actual en disco"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nombre de archivo" msgstr "nombre de archivo"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nombre de archivo actual en disco" 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" msgid "archive serial number"
msgstr "número de serie del archivo" 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." msgid "The position of this document in your physical document archive."
msgstr "Posición de este documento en tu archivo físico de documentos." 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" msgid "document"
msgstr "documento" msgstr "documento"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documentos" msgstr "documentos"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "depuración" msgstr "depuración"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "información" msgstr "información"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "alerta" msgstr "alerta"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "error" msgstr "error"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "crítico" msgstr "crítico"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupo" msgstr "grupo"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "mensaje" msgstr "mensaje"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivel" msgstr "nivel"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "log" msgstr "log"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logs" msgstr "logs"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "vista guardada" msgstr "vista guardada"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "vistas guardadas" msgstr "vistas guardadas"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "usuario" msgstr "usuario"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "mostrar en el panel de control" msgstr "mostrar en el panel de control"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "mostrar en barra lateral" msgstr "mostrar en barra lateral"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "campo de ordenación" msgstr "campo de ordenación"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "ordenar al revés" msgstr "ordenar al revés"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "el título contiene" msgstr "el título contiene"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "el contenido contiene" msgstr "el contenido contiene"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN es" msgstr "ASN es"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "interlocutor es" msgstr "interlocutor es"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "el tipo de documento es" msgstr "el tipo de documento es"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "está en la bandeja de entrada" msgstr "está en la bandeja de entrada"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "tiene la etiqueta" msgstr "tiene la etiqueta"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "tiene cualquier etiqueta" msgstr "tiene cualquier etiqueta"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "creado antes" msgstr "creado antes"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "creado después" msgstr "creado después"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "el año de creación es" msgstr "el año de creación es"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "el mes de creación es" msgstr "el mes de creación es"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "creado el día" msgstr "creado el día"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "agregado antes de" msgstr "agregado antes de"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "agregado después de" msgstr "agregado después de"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificado después de" msgstr "modificado después de"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificado antes de" msgstr "modificado antes de"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "no tiene la etiqueta" msgstr "no tiene la etiqueta"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "no tiene ASN" msgstr "no tiene ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "el título o cuerpo contiene" msgstr "el título o cuerpo contiene"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "consulta de texto completo" msgstr "consulta de texto completo"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "más contenido similar" msgstr "más contenido similar"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "tiene etiquetas en" 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" msgid "rule type"
msgstr "tipo de regla" msgstr "tipo de regla"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valor" msgstr "valor"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "regla de filtrado" msgstr "regla de filtrado"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "reglas de filtrado" msgstr "reglas de filtrado"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Expresión irregular inválida: %(error)s" msgstr "Expresión irregular inválida: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Color inválido." msgstr "Color inválido."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Tipo de fichero %(type)s no suportado" msgstr "Tipo de fichero %(type)s no suportado"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Variable inválida." msgstr "Variable inválida."
@ -444,87 +556,87 @@ msgstr "Contraseña"
msgid "Sign in" msgid "Sign in"
msgstr "Iniciar sesión" msgstr "Iniciar sesión"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Inglés (US)" msgstr "Inglés (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Bielorruso" msgstr "Bielorruso"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Checo" msgstr "Checo"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danés" msgstr "Danés"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Alemán" msgstr "Alemán"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Inglés (Gran Bretaña)" msgstr "Inglés (Gran Bretaña)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Español" msgstr "Español"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francés" msgstr "Francés"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiano" msgstr "Italiano"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburgués" msgstr "Luxemburgués"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Alemán" msgstr "Alemán"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polaco" msgstr "Polaco"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugués (Brasil)" msgstr "Portugués (Brasil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugués" msgstr "Portugués"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumano" msgstr "Rumano"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ruso" msgstr "Ruso"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Esloveno" msgstr "Esloveno"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbio" msgstr "Serbio"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Sueco" msgstr "Sueco"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turco" msgstr "Turco"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Chino simplificado" msgstr "Chino simplificado"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-09-06 20:21\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Language: fi_FI\n" "Language: fi_FI\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumentit" msgstr "Dokumentit"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Mikä tahansa sana" msgstr "Mikä tahansa sana"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Kaikki sanat" msgstr "Kaikki sanat"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Tarkka osuma" msgstr "Tarkka osuma"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Säännöllinen lauseke (regex)" msgstr "Säännöllinen lauseke (regex)"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Sumea sana" msgstr "Sumea sana"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automaattinen" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nimi" msgstr "nimi"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "osuma" msgstr "osuma"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "tunnistusalgoritmi" msgstr "tunnistusalgoritmi"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "ei ole herkkä" msgstr "ei ole herkkä"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "yhteyshenkilö" msgstr "yhteyshenkilö"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "yhteyshenkilöt" msgstr "yhteyshenkilöt"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "väri" msgstr "väri"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "on uusien tunniste" 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." 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." 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" msgid "tag"
msgstr "tunniste" msgstr "tunniste"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "tunnisteet" msgstr "tunnisteet"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "asiakirjatyyppi" msgstr "asiakirjatyyppi"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "asiakirjatyypit" msgstr "asiakirjatyypit"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "polku" msgstr "polku"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "tallennustilan polku" msgstr "tallennustilan polku"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "tallennustilan polut" msgstr "tallennustilan polut"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Salaamaton" msgstr "Salaamaton"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "GNU Privacy Guard -salattu" msgstr "GNU Privacy Guard -salattu"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "otsikko" msgstr "otsikko"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "sisältö" 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." 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." 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" msgid "mime type"
msgstr "mime-tyyppi" msgstr "mime-tyyppi"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "tarkistussumma" msgstr "tarkistussumma"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Alkuperäisen dokumentin tarkistussumma." msgstr "Alkuperäisen dokumentin tarkistussumma."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arkistotarkastussumma" msgstr "arkistotarkastussumma"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Arkistoidun dokumentin tarkistussumma." 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" msgid "created"
msgstr "luotu" msgstr "luotu"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "muokattu" msgstr "muokattu"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tallennustilan tyyppi" msgstr "tallennustilan tyyppi"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "lisätty" msgstr "lisätty"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "tiedostonimi" msgstr "tiedostonimi"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Tiedostonimi tallennustilassa" msgstr "Tiedostonimi tallennustilassa"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "arkistointitiedostonimi" msgstr "arkistointitiedostonimi"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Tämänhetkinen arkistointitiedostoimi tallennustilassa" 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" msgid "archive serial number"
msgstr "arkistointisarjanumero" msgstr "arkistointisarjanumero"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Dokumentin sijainti fyysisessa dokumenttiarkistossa." msgstr "Dokumentin sijainti fyysisessa dokumenttiarkistossa."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokumentti" msgstr "dokumentti"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumentit" msgstr "dokumentit"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "virheenjäljitys" msgstr "virheenjäljitys"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informaatio" msgstr "informaatio"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "varoitus" msgstr "varoitus"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "virhe" msgstr "virhe"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kriittinen" msgstr "kriittinen"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "ryhmä" msgstr "ryhmä"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "viesti" msgstr "viesti"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "taso" msgstr "taso"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "loki" msgstr "loki"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "lokit" msgstr "lokit"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "tallennettu näkymä" msgstr "tallennettu näkymä"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "tallennetut näkymät" msgstr "tallennetut näkymät"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "käyttäjä" msgstr "käyttäjä"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "näytä etusivulla" msgstr "näytä etusivulla"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "näytä sivupaneelissa" msgstr "näytä sivupaneelissa"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "lajittelukenttä" msgstr "lajittelukenttä"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "lajittele käänteisesti" msgstr "lajittele käänteisesti"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "otsikko sisältää" msgstr "otsikko sisältää"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "sisältö sisältää" msgstr "sisältö sisältää"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN on" msgstr "ASN on"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "yhteyshenkilö on" msgstr "yhteyshenkilö on"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "dokumenttityyppi on" msgstr "dokumenttityyppi on"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "on uusi" msgstr "on uusi"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "on tagattu" msgstr "on tagattu"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "on mikä tahansa tagi" msgstr "on mikä tahansa tagi"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "luotu ennen" msgstr "luotu ennen"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "luotu jälkeen" msgstr "luotu jälkeen"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "luotu vuonna" msgstr "luotu vuonna"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "luotu kuukautena" msgstr "luotu kuukautena"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "luomispäivä on" msgstr "luomispäivä on"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "lisätty ennen" msgstr "lisätty ennen"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "lisätty jälkeen" msgstr "lisätty jälkeen"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "muokattu ennen" msgstr "muokattu ennen"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "muokattu jälkeen" msgstr "muokattu jälkeen"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "ei ole tagia" msgstr "ei ole tagia"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "ei ole ASN-numeroa" msgstr "ei ole ASN-numeroa"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "otsikko tai sisältö sisältää" msgstr "otsikko tai sisältö sisältää"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "fulltext-kysely" msgstr "fulltext-kysely"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "enemmän kuten tämä" msgstr "enemmän kuten tämä"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "sisältää tagit" 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" msgid "rule type"
msgstr "sääntötyyppi" msgstr "sääntötyyppi"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "arvo" msgstr "arvo"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "suodatussääntö" msgstr "suodatussääntö"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "suodatussäännöt" msgstr "suodatussäännöt"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "aloitettu" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Virheellinen regex-lauseke: %(error)s" msgstr "Virheellinen regex-lauseke: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Virheellinen väri." msgstr "Virheellinen väri."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Tiedostotyyppiä %(type)s ei tueta" msgstr "Tiedostotyyppiä %(type)s ei tueta"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Virheellinen muuttuja havaittu." msgstr "Virheellinen muuttuja havaittu."
@ -444,87 +556,87 @@ msgstr "Salasana"
msgid "Sign in" msgid "Sign in"
msgstr "Kirjaudu sisään" msgstr "Kirjaudu sisään"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Englanti (US)" msgstr "Englanti (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "valkovenäjä" msgstr "valkovenäjä"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tšekki" msgstr "Tšekki"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Tanska" msgstr "Tanska"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Saksa" msgstr "Saksa"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Englanti (US)" msgstr "Englanti (US)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Espanja" msgstr "Espanja"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Ranska" msgstr "Ranska"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italia" msgstr "Italia"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburg" msgstr "Luxemburg"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Hollanti" msgstr "Hollanti"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "puola" msgstr "puola"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "portugali (Brasilia)" msgstr "portugali (Brasilia)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "portugali" msgstr "portugali"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "romania" msgstr "romania"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "venäjä" msgstr "venäjä"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovenia" msgstr "Slovenia"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbia" msgstr "Serbia"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "ruotsi" msgstr "ruotsi"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turkki" msgstr "Turkki"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Kiina (yksinkertaistettu)" msgstr "Kiina (yksinkertaistettu)"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-09-07 21:41\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: French\n" "Language-Team: French\n"
"Language: fr_FR\n" "Language: fr_FR\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documents" msgstr "Documents"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Un des mots" msgstr "Un des mots"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Tous les mots" msgstr "Tous les mots"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Concordance exacte" msgstr "Concordance exacte"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Expression régulière" msgstr "Expression régulière"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Mot approximatif" msgstr "Mot approximatif"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatique" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nom" msgstr "nom"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "rapprochement" msgstr "rapprochement"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algorithme de rapprochement" msgstr "algorithme de rapprochement"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "est insensible à la casse" msgstr "est insensible à la casse"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "correspondant" msgstr "correspondant"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "correspondants" msgstr "correspondants"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "couleur" msgstr "couleur"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "est une étiquette de boîte de réception" 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." 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." 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" msgid "tag"
msgstr "étiquette" msgstr "étiquette"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "étiquettes" msgstr "étiquettes"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "type de document" msgstr "type de document"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "types de document" msgstr "types de document"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "chemin" msgstr "chemin"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "chemin de stockage" msgstr "chemin de stockage"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "chemins de stockage" msgstr "chemins de stockage"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Non chiffré" msgstr "Non chiffré"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Chiffré avec GNU Privacy Guard" msgstr "Chiffré avec GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titre" msgstr "titre"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "contenu" 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." 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." 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" msgid "mime type"
msgstr "type mime" msgstr "type mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "somme de contrôle" msgstr "somme de contrôle"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "La somme de contrôle du document original." msgstr "La somme de contrôle du document original."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "somme de contrôle de l'archive" msgstr "somme de contrôle de l'archive"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "La somme de contrôle du document archivé." 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" msgid "created"
msgstr "créé le" msgstr "créé le"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modifié" msgstr "modifié"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "forme d'enregistrement :" msgstr "forme d'enregistrement :"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "date d'ajout" msgstr "date d'ajout"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nom du fichier" msgstr "nom du fichier"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nom du fichier courant en base de données" msgstr "Nom du fichier courant en base de données"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nom de fichier de l'archive" msgstr "nom de fichier de l'archive"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nom du fichier d'archive courant en base de données" 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" msgid "archive serial number"
msgstr "numéro de série de l'archive" 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." msgid "The position of this document in your physical document archive."
msgstr "Le classement de ce document dans votre archive de documents physiques." 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" msgid "document"
msgstr "document" msgstr "document"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documents" msgstr "documents"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "débogage" msgstr "débogage"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informations" msgstr "informations"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "avertissement" msgstr "avertissement"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "erreur" msgstr "erreur"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "critique" msgstr "critique"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "groupe" msgstr "groupe"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "message" msgstr "message"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "niveau" msgstr "niveau"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "journal" msgstr "journal"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "journaux" msgstr "journaux"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "vue enregistrée" msgstr "vue enregistrée"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "vues enregistrées" msgstr "vues enregistrées"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "utilisateur" msgstr "utilisateur"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "montrer sur le tableau de bord" msgstr "montrer sur le tableau de bord"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "montrer dans la barre latérale" msgstr "montrer dans la barre latérale"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "champ de tri" msgstr "champ de tri"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "tri inverse" msgstr "tri inverse"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "le titre contient" msgstr "le titre contient"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "le contenu contient" msgstr "le contenu contient"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "le NSA est" msgstr "le NSA est"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "le correspondant est" msgstr "le correspondant est"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "le type de document est" msgstr "le type de document est"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "est dans la boîte de réception" msgstr "est dans la boîte de réception"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "porte l'étiquette" msgstr "porte l'étiquette"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "porte l'une des étiquettes" msgstr "porte l'une des étiquettes"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "créé avant" msgstr "créé avant"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "créé après" msgstr "créé après"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "l'année de création est" msgstr "l'année de création est"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "le mois de création est" msgstr "le mois de création est"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "le jour de création est" msgstr "le jour de création est"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "ajouté avant" msgstr "ajouté avant"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "ajouté après" msgstr "ajouté après"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modifié avant" msgstr "modifié avant"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modifié après" msgstr "modifié après"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "ne porte pas d'étiquette" msgstr "ne porte pas d'étiquette"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "ne porte pas de NSA" msgstr "ne porte pas de NSA"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "le titre ou le contenu contient" msgstr "le titre ou le contenu contient"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "recherche en texte intégral" msgstr "recherche en texte intégral"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "documents relatifs" msgstr "documents relatifs"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "porte une étiquette parmi" 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" msgid "rule type"
msgstr "type de règle" msgstr "type de règle"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valeur" msgstr "valeur"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "règle de filtrage" msgstr "règle de filtrage"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "règles de filtrage" msgstr "règles de filtrage"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "démarré" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Expression régulière incorrecte : %(error)s" msgstr "Expression régulière incorrecte : %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Couleur incorrecte." msgstr "Couleur incorrecte."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Type de fichier %(type)s non pris en charge" msgstr "Type de fichier %(type)s non pris en charge"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Variable non valide détectée." msgstr "Variable non valide détectée."
@ -444,87 +556,87 @@ msgstr "Mot de passe"
msgid "Sign in" msgid "Sign in"
msgstr "S'identifier" msgstr "S'identifier"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Anglais (US)" msgstr "Anglais (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Biélorusse" msgstr "Biélorusse"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tchèque" msgstr "Tchèque"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danois" msgstr "Danois"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Allemand" msgstr "Allemand"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Anglais (GB)" msgstr "Anglais (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Espagnol" msgstr "Espagnol"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Français" msgstr "Français"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italien" msgstr "Italien"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxembourgeois" msgstr "Luxembourgeois"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Néerlandais" msgstr "Néerlandais"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polonais" msgstr "Polonais"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugais (Brésil)" msgstr "Portugais (Brésil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugais" msgstr "Portugais"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Roumain" msgstr "Roumain"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russe" msgstr "Russe"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovène" msgstr "Slovène"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbe" msgstr "Serbe"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Suédois" msgstr "Suédois"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turc" msgstr "Turc"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Chinois simplifié" msgstr "Chinois simplifié"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:06\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Language: he_IL\n" "Language: he_IL\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "מסמכים" msgstr "מסמכים"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "מילה כלשהי" msgstr "מילה כלשהי"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "כל המילים" msgstr "כל המילים"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "התאמה מדוייקת" msgstr "התאמה מדוייקת"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "ביטוי רגולרי" msgstr "ביטוי רגולרי"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "מילה מעורפלת" msgstr "מילה מעורפלת"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "אוטומטי" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "שם" msgstr "שם"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "התאמה" msgstr "התאמה"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "אלגוריתם התאמה" msgstr "אלגוריתם התאמה"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "אינו רגיש" msgstr "אינו רגיש"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "מכותב" msgstr "מכותב"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "מכותבים" msgstr "מכותבים"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "צבע" msgstr "צבע"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "תגית דואר נכנס" 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." msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "מסמן תגית זו כתגית דואר נכנס: כל המסמכים החדשים שהתקבלו יתויגו עם תגית דואר נכנס." msgstr "מסמן תגית זו כתגית דואר נכנס: כל המסמכים החדשים שהתקבלו יתויגו עם תגית דואר נכנס."
#: documents/models.py:78 #: documents/models.py:81
msgid "tag" msgid "tag"
msgstr "תגית" msgstr "תגית"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "תגיות" msgstr "תגיות"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "סוג מסמך" msgstr "סוג מסמך"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "סוגי מסמך" msgstr "סוגי מסמך"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "נתיב" msgstr "נתיב"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "נתיב אכסון" msgstr "נתיב אכסון"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "נתיבי אכסון" msgstr "נתיבי אכסון"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "לא מוצפן" msgstr "לא מוצפן"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "הוצפן באמצעות GNU Privacy Guard" msgstr "הוצפן באמצעות GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "כותרת" msgstr "כותרת"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "תוכן" 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." msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "הנתונים הגולמיים של המסמך, המכילים טקסט בלבד. שדה זה משמש בעיקר לצורך חיפוש." msgstr "הנתונים הגולמיים של המסמך, המכילים טקסט בלבד. שדה זה משמש בעיקר לצורך חיפוש."
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "סוג mime" msgstr "סוג mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "מחרוזת בדיקה" msgstr "מחרוזת בדיקה"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "מחרוזת בדיקה של המסמך המקורי." msgstr "מחרוזת בדיקה של המסמך המקורי."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "מחרוזת בדיקה לארכיון" msgstr "מחרוזת בדיקה לארכיון"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "מחרוזת הבדיקה למסמך בארכיון." 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" msgid "created"
msgstr "נוצר" msgstr "נוצר"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "נערך לאחרונה" msgstr "נערך לאחרונה"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "סוג אחסון" msgstr "סוג אחסון"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "התווסף" msgstr "התווסף"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "שם קובץ" msgstr "שם קובץ"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "שם קובץ נוכחי באחסון" msgstr "שם קובץ נוכחי באחסון"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "שם קובץ בארכיון" msgstr "שם קובץ בארכיון"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "שם קובץ ארכיוני נוכחי באחסון" 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" msgid "archive serial number"
msgstr "מספר סידורי בארכיון" msgstr "מספר סידורי בארכיון"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "מיקומו של מסמך זה בארכיון המסמכים הפיזי שלך." msgstr "מיקומו של מסמך זה בארכיון המסמכים הפיזי שלך."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "מסמך" msgstr "מסמך"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "מסמכים" msgstr "מסמכים"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "ניפוי שגיאות" msgstr "ניפוי שגיאות"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "מידע" msgstr "מידע"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "אזהרה" msgstr "אזהרה"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "שגיאה" msgstr "שגיאה"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "קריטי" msgstr "קריטי"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "קבוצה" msgstr "קבוצה"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "הודעה" msgstr "הודעה"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "רמה" msgstr "רמה"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "יומן רישום" msgstr "יומן רישום"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "יומני רישום" msgstr "יומני רישום"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "תצוגה שמורה" msgstr "תצוגה שמורה"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "תצוגות שמורות" msgstr "תצוגות שמורות"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "משתמש" msgstr "משתמש"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "הצג בדשבורד" msgstr "הצג בדשבורד"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "הצג בסרגל צידי" msgstr "הצג בסרגל צידי"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "שדה המיון" msgstr "שדה המיון"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "מיין הפוך" msgstr "מיין הפוך"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "כותרת מכילה" msgstr "כותרת מכילה"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "תוכן מכיל" msgstr "תוכן מכיל"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "מס\"ד הוא" msgstr "מס\"ד הוא"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "מכותב הוא" msgstr "מכותב הוא"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "סוג מסמך הוא" msgstr "סוג מסמך הוא"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "בתיבה הנכנסת" msgstr "בתיבה הנכנסת"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ישנו תיוג" msgstr "ישנו תיוג"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ישנו כל תיוג" msgstr "ישנו כל תיוג"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "נוצר לפני" msgstr "נוצר לפני"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "נוצר לאחר" msgstr "נוצר לאחר"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "נוצר בשנת" msgstr "נוצר בשנת"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "נוצר בחודש" msgstr "נוצר בחודש"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "נוצר ביום" msgstr "נוצר ביום"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "הוסף לפני" msgstr "הוסף לפני"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "הוסף אחרי" msgstr "הוסף אחרי"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "נערך לפני" msgstr "נערך לפני"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "נערך אחרי" msgstr "נערך אחרי"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "אינו כולל את התיוג" msgstr "אינו כולל את התיוג"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "אינו בעל מס\"ד" msgstr "אינו בעל מס\"ד"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "כותרת או תוכן מכילים" msgstr "כותרת או תוכן מכילים"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "שאילתת טקסט מלא" msgstr "שאילתת טקסט מלא"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "עוד כמו זה" msgstr "עוד כמו זה"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "מכיל תגים ב-" 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" msgid "rule type"
msgstr "סוג כלל" msgstr "סוג כלל"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "ערך" msgstr "ערך"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "חוק סינון" msgstr "חוק סינון"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "חוקי סינון" msgstr "חוקי סינון"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "ביטוי רגולרי בלתי חוקי: %(error)s" msgstr "ביטוי רגולרי בלתי חוקי: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "צבע לא חוקי." msgstr "צבע לא חוקי."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "סוג קובץ %(type)s לא נתמך" msgstr "סוג קובץ %(type)s לא נתמך"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "משתנה לא חוקי זוהה." msgstr "משתנה לא חוקי זוהה."
@ -444,87 +556,87 @@ msgstr "סיסמה"
msgid "Sign in" msgid "Sign in"
msgstr "התחבר" msgstr "התחבר"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "אנגלית (ארה\"ב)" msgstr "אנגלית (ארה\"ב)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "בלרוסית" msgstr "בלרוסית"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "צ'כית" msgstr "צ'כית"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "דנית" msgstr "דנית"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "גרמנית" msgstr "גרמנית"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "אנגלית (בריטניה)" msgstr "אנגלית (בריטניה)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "ספרדית" msgstr "ספרדית"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "צרפתית" msgstr "צרפתית"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "איטלקית" msgstr "איטלקית"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "לוקסמבורגית" msgstr "לוקסמבורגית"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "הולנדית" msgstr "הולנדית"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "פולנית" msgstr "פולנית"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "פורטוגזית (ברזיל)" msgstr "פורטוגזית (ברזיל)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "פורטוגזית" msgstr "פורטוגזית"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "רומנית" msgstr "רומנית"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "רוסית" msgstr "רוסית"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "סלובנית" msgstr "סלובנית"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "סרבית" msgstr "סרבית"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "שוודית" msgstr "שוודית"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "טורקית" msgstr "טורקית"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "סינית מופשטת" msgstr "סינית מופשטת"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-09 12:27\n" "PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Croatian\n" "Language-Team: Croatian\n"
"Language: hr_HR\n" "Language: hr_HR\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Bilo koja riječ" msgstr "Bilo koja riječ"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Sve riječi" msgstr "Sve riječi"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Točno podudaranje" msgstr "Točno podudaranje"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Uobičajeni izraz" msgstr "Uobičajeni izraz"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Nejasna riječ" msgstr "Nejasna riječ"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatski" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "ime" msgstr "ime"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "podudarati" msgstr "podudarati"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritam podudaranja" msgstr "algoritam podudaranja"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "ne razlikuje velika i mala slova" 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" msgid "correspondent"
msgstr "dopisnik" msgstr "dopisnik"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "dopisnici" msgstr "dopisnici"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "boja" msgstr "boja"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "oznaka ulazne pošte (inbox)" 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." 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)." 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" msgid "tag"
msgstr "oznaka" msgstr "oznaka"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "oznake" msgstr "oznake"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "vrsta dokumenta" msgstr "vrsta dokumenta"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "vrste dokumenta" msgstr "vrste dokumenta"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "putanja" msgstr "putanja"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "putanja pohrane" msgstr "putanja pohrane"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "putanje pohrane" msgstr "putanje pohrane"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Nekriptirano" msgstr "Nekriptirano"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Enkriptirano s GNU Privacy Guard" msgstr "Enkriptirano s GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "naslov" msgstr "naslov"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "sadržaj" 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." 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." 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" msgid "mime type"
msgstr "vrste mime" msgstr "vrste mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrolni zbroj" msgstr "kontrolni zbroj"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrolni zbroj originalnog dokumenta." msgstr "Kontrolni zbroj originalnog dokumenta."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arhivski kontrolni zbroj" msgstr "arhivski kontrolni zbroj"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrolni zbroj arhiviranog dokumenta." 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" msgid "created"
msgstr "stvoreno" msgstr "stvoreno"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificiran" msgstr "modificiran"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "vrsta pohrane" msgstr "vrsta pohrane"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "dodano" msgstr "dodano"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "naziv datoteke" msgstr "naziv datoteke"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Trenutni naziv pohranjene datoteke" msgstr "Trenutni naziv pohranjene datoteke"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "naziv arhivirane datoteke" msgstr "naziv arhivirane datoteke"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Trenutni naziv arhivirane pohranjene datoteke" 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" msgid "archive serial number"
msgstr "arhivirani serijski broj" msgstr "arhivirani serijski broj"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata." 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" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenti" msgstr "dokumenti"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "otklanjanje pogrešaka" msgstr "otklanjanje pogrešaka"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informacije" msgstr "informacije"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "upozorenje" msgstr "upozorenje"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "greška" msgstr "greška"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritično" msgstr "kritično"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupa" msgstr "grupa"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "poruka" msgstr "poruka"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "razina" msgstr "razina"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "zapisnik" msgstr "zapisnik"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "zapisnici" msgstr "zapisnici"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "spremljen prikaz" msgstr "spremljen prikaz"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "spremljeni prikazi" msgstr "spremljeni prikazi"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "korisnik" msgstr "korisnik"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "prikaži na nadzornoj ploči" msgstr "prikaži na nadzornoj ploči"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "prikaži u bočnoj traci" msgstr "prikaži u bočnoj traci"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sortiraj polje" msgstr "sortiraj polje"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "obrnuto sortiranje" msgstr "obrnuto sortiranje"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "naslov sadrži" msgstr "naslov sadrži"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "sadržaj sadrži" msgstr "sadržaj sadrži"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN je" msgstr "ASN je"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "dopisnik je" msgstr "dopisnik je"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "vrsta dokumenta je" msgstr "vrsta dokumenta je"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "nalazi se u ulaznoj pošti" msgstr "nalazi se u ulaznoj pošti"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ima oznaku" msgstr "ima oznaku"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ima bilo kakvu oznaku" msgstr "ima bilo kakvu oznaku"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "stvoreni prije" msgstr "stvoreni prije"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "stvoreno poslije" msgstr "stvoreno poslije"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "godina stvaranja je" msgstr "godina stvaranja je"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "mjesec stvaranja je" msgstr "mjesec stvaranja je"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dan stvaranja je" msgstr "dan stvaranja je"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "dodano prije" msgstr "dodano prije"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "dodano poslije" msgstr "dodano poslije"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificirano prije" msgstr "modificirano prije"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificirano poslije" msgstr "modificirano poslije"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "ne posjeduje oznaku" msgstr "ne posjeduje oznaku"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "ne posjeduje ASN" msgstr "ne posjeduje ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "naziv ili sadržaj sadrži" msgstr "naziv ili sadržaj sadrži"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "upit za cijeli tekst" msgstr "upit za cijeli tekst"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "više poput ovog" msgstr "više poput ovog"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "sadrži oznake" 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" msgid "rule type"
msgstr "vrsta pravila" msgstr "vrsta pravila"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "vrijednost" msgstr "vrijednost"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "pravilo filtera" msgstr "pravilo filtera"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "pravila filtera" msgstr "pravila filtera"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "započeto" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Nevažeći regularni izraz: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Nevažeća boja." msgstr "Nevažeća boja."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s nije podržana" msgstr "Vrsta datoteke %(type)s nije podržana"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Otkrivena je nevaljana vrsta datoteke." msgstr "Otkrivena je nevaljana vrsta datoteke."
@ -444,87 +556,87 @@ msgstr "Lozinka"
msgid "Sign in" msgid "Sign in"
msgstr "Prijava" msgstr "Prijava"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engleski (US)" msgstr "Engleski (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Bjeloruski" msgstr "Bjeloruski"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Češki" msgstr "Češki"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danski" msgstr "Danski"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Njemački" msgstr "Njemački"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engleski (GB)" msgstr "Engleski (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Španjolski" msgstr "Španjolski"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francuski" msgstr "Francuski"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Talijanski" msgstr "Talijanski"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luksemburški" msgstr "Luksemburški"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Nizozemski" msgstr "Nizozemski"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Poljski" msgstr "Poljski"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazil)" msgstr "Portugalski (Brazil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugalski" msgstr "Portugalski"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumunjski" msgstr "Rumunjski"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ruski" msgstr "Ruski"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovenski" msgstr "Slovenski"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Srpski" msgstr "Srpski"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Švedski" msgstr "Švedski"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turski" msgstr "Turski"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Pojednostavljeni kineski" msgstr "Pojednostavljeni kineski"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-03 11:24\n" "PO-Revision-Date: 2022-11-12 10:50\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Language: it_IT\n" "Language: it_IT\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documenti" msgstr "Documenti"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Qualsiasi parola" msgstr "Qualsiasi parola"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Tutte le parole" msgstr "Tutte le parole"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Corrispondenza esatta" msgstr "Corrispondenza esatta"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Espressione regolare" msgstr "Espressione regolare"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Parole fuzzy" msgstr "Parole fuzzy"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatico" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nome" msgstr "nome"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "corrispondenza" msgstr "corrispondenza"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritmo di corrispondenza" msgstr "algoritmo di corrispondenza"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "non distingue maiuscole e minuscole" msgstr "non distingue maiuscole e minuscole"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "corrispondente" msgstr "corrispondente"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "corrispondenti" msgstr "corrispondenti"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "colore" msgstr "colore"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "è tag di arrivo" 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." 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." 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" msgid "tag"
msgstr "tag" msgstr "tag"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "tag" msgstr "tag"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tipo di documento" msgstr "tipo di documento"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipi di documento" msgstr "tipi di documento"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "percorso" msgstr "percorso"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "percorso di archiviazione" msgstr "percorso di archiviazione"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "percorsi di archiviazione" msgstr "percorsi di archiviazione"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Non criptato" msgstr "Non criptato"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Criptato con GNU Privacy Guard" msgstr "Criptato con GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titolo" msgstr "titolo"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "contenuto" 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." 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." 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" msgid "mime type"
msgstr "tipo mime" msgstr "tipo mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "checksum" msgstr "checksum"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Il checksum del documento originale." msgstr "Il checksum del documento originale."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "checksum dell'archivio" msgstr "checksum dell'archivio"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Il checksum del documento archiviato." 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" msgid "created"
msgstr "creato il" msgstr "creato il"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificato il" msgstr "modificato il"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tipo di storage" msgstr "tipo di storage"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "aggiunto il" msgstr "aggiunto il"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nome del file" msgstr "nome del file"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nome del file corrente nello storage" msgstr "Nome del file corrente nello storage"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "Nome file in archivio" msgstr "Nome file in archivio"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Il nome del file nell'archiviazione" 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" msgid "archive serial number"
msgstr "numero seriale dell'archivio" msgstr "numero seriale dell'archivio"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Posizione di questo documento all'interno dell'archivio fisico." msgstr "Posizione di questo documento all'interno dell'archivio fisico."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "documento" msgstr "documento"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documenti" msgstr "documenti"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "debug" msgstr "debug"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informazione" msgstr "informazione"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "avvertimento" msgstr "avvertimento"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "errore" msgstr "errore"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "critico" msgstr "critico"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "gruppo" msgstr "gruppo"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "messaggio" msgstr "messaggio"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "livello" msgstr "livello"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "logs" msgstr "logs"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "log" msgstr "log"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "vista salvata" msgstr "vista salvata"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "viste salvate" msgstr "viste salvate"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "utente" msgstr "utente"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "mostra sul cruscotto" msgstr "mostra sul cruscotto"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "mostra nella barra laterale" msgstr "mostra nella barra laterale"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "campo di ordinamento" msgstr "campo di ordinamento"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "ordine invertito" msgstr "ordine invertito"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "il titolo contiene" msgstr "il titolo contiene"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "il contenuto contiene" msgstr "il contenuto contiene"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN è" msgstr "ASN è"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "la corrispondenza è" msgstr "la corrispondenza è"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "il tipo di documento è" msgstr "il tipo di documento è"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "è in arrivo" msgstr "è in arrivo"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ha etichetta" msgstr "ha etichetta"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ha qualsiasi etichetta" msgstr "ha qualsiasi etichetta"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "creato prima del" msgstr "creato prima del"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "creato dopo il" msgstr "creato dopo il"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "l'anno di creazione è" msgstr "l'anno di creazione è"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "il mese di creazione è" msgstr "il mese di creazione è"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "il giorno di creazione è" msgstr "il giorno di creazione è"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "aggiunto prima del" msgstr "aggiunto prima del"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "aggiunto dopo il" msgstr "aggiunto dopo il"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificato prima del" msgstr "modificato prima del"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificato dopo" msgstr "modificato dopo"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "non ha tag" msgstr "non ha tag"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "non ha ASN" msgstr "non ha ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "il titolo o il contenuto contiene" msgstr "il titolo o il contenuto contiene"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "query fulltext" msgstr "query fulltext"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "altro come questo" msgstr "altro come questo"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "ha tag 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" msgid "rule type"
msgstr "tipo di regola" msgstr "tipo di regola"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valore" msgstr "valore"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "regola filtro" msgstr "regola filtro"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "regole filtro" msgstr "regole filtro"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "avviato" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Espressione regolare non valida: %(error)s" msgstr "Espressione regolare non valida: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Colore non valido." msgstr "Colore non valido."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Il tipo di file %(type)s non è supportato" msgstr "Il tipo di file %(type)s non è supportato"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Variabile non valida." msgstr "Variabile non valida."
@ -444,87 +556,87 @@ msgstr "Password"
msgid "Sign in" msgid "Sign in"
msgstr "Accedi" msgstr "Accedi"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Inglese (US)" msgstr "Inglese (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Bielorusso" msgstr "Bielorusso"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Ceco" msgstr "Ceco"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danese" msgstr "Danese"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Tedesco" msgstr "Tedesco"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Inglese (GB)" msgstr "Inglese (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spagnolo" msgstr "Spagnolo"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francese" msgstr "Francese"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiano" msgstr "Italiano"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Lussemburghese" msgstr "Lussemburghese"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Olandese" msgstr "Olandese"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polacco" msgstr "Polacco"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portoghese (Brasile)" msgstr "Portoghese (Brasile)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portoghese" msgstr "Portoghese"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumeno" msgstr "Rumeno"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Sloveno" msgstr "Sloveno"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbo" msgstr "Serbo"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Svedese" msgstr "Svedese"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turco" msgstr "Turco"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Cinese semplificato" msgstr "Cinese semplificato"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Luxembourgish\n" "Language-Team: Luxembourgish\n"
"Language: lb_LU\n" "Language: lb_LU\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Iergendee Wuert" msgstr "Iergendee Wuert"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "All d'Wierder" msgstr "All d'Wierder"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Exakten Treffer" msgstr "Exakten Treffer"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regulären Ausdrock" msgstr "Regulären Ausdrock"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Ongenaut Wuert" msgstr "Ongenaut Wuert"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatesch" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "Numm" msgstr "Numm"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "Zouweisungsmuster" msgstr "Zouweisungsmuster"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "Zouweisungsalgorithmus" msgstr "Zouweisungsalgorithmus"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "Grouss-/Klengschreiwung ignoréieren" msgstr "Grouss-/Klengschreiwung ignoréieren"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "Korrespondent" msgstr "Korrespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "Korrespondenten" msgstr "Korrespondenten"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "Faarf" msgstr "Faarf"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "Postaganks-Etikett" 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." 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." 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" msgid "tag"
msgstr "Etikett" msgstr "Etikett"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "Etiketten" msgstr "Etiketten"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "Dokumententyp" msgstr "Dokumententyp"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "Dokumententypen" msgstr "Dokumententypen"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "Pfad" msgstr "Pfad"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "Späicherpfad" msgstr "Späicherpfad"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "Späicherpfaden" msgstr "Späicherpfaden"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Onverschlësselt" msgstr "Onverschlësselt"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Verschlësselt mat GNU Privacy Guard" msgstr "Verschlësselt mat GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "Titel" msgstr "Titel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "Inhalt" 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." 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." 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" msgid "mime type"
msgstr "MIME-Typ" msgstr "MIME-Typ"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "Préifzomm" msgstr "Préifzomm"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "D'Préifzomm vum Original-Dokument." msgstr "D'Préifzomm vum Original-Dokument."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "Archiv-Préifzomm" msgstr "Archiv-Préifzomm"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "D'Préifzomm vum archivéierten Dokument." 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" msgid "created"
msgstr "erstallt" msgstr "erstallt"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "verännert" msgstr "verännert"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "Späichertyp" msgstr "Späichertyp"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "derbäigesat" msgstr "derbäigesat"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "Fichiersnumm" msgstr "Fichiersnumm"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Aktuellen Dateinumm am Späicher" msgstr "Aktuellen Dateinumm am Späicher"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "Archiv-Dateinumm" msgstr "Archiv-Dateinumm"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Aktuellen Dateinumm am Archiv" 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" msgid "archive serial number"
msgstr "Archiv-Seriennummer" msgstr "Archiv-Seriennummer"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "D'Positioun vun dësem Dokument am physeschen Dokumentenarchiv." msgstr "D'Positioun vun dësem Dokument am physeschen Dokumentenarchiv."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "Dokument" msgstr "Dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "Fehlersiich" msgstr "Fehlersiich"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "Informatioun" msgstr "Informatioun"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "Warnung" msgstr "Warnung"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "Feeler" msgstr "Feeler"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritesch" msgstr "kritesch"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "Grupp" msgstr "Grupp"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "Message" msgstr "Message"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "Niveau" msgstr "Niveau"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "Protokoll" msgstr "Protokoll"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "Protokoller" msgstr "Protokoller"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "Gespäichert Usiicht" msgstr "Gespäichert Usiicht"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "Gespäichert Usiichten" msgstr "Gespäichert Usiichten"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "Benotzer" msgstr "Benotzer"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "Op der Startsäit uweisen" msgstr "Op der Startsäit uweisen"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "An der Säiteleescht uweisen" msgstr "An der Säiteleescht uweisen"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "Zortéierfeld" msgstr "Zortéierfeld"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "ëmgedréint zortéieren" msgstr "ëmgedréint zortéieren"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "Titel enthält" msgstr "Titel enthält"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "Inhalt enthält" msgstr "Inhalt enthält"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN ass" msgstr "ASN ass"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "Korrespondent ass" msgstr "Korrespondent ass"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "Dokumententyp ass" msgstr "Dokumententyp ass"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "ass am Postagank" msgstr "ass am Postagank"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "huet Etikett" msgstr "huet Etikett"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "huet iergendeng Etikett" msgstr "huet iergendeng Etikett"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "erstallt virun" msgstr "erstallt virun"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "erstallt no" msgstr "erstallt no"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "Erstellungsjoer ass" msgstr "Erstellungsjoer ass"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "Erstellungsmount ass" msgstr "Erstellungsmount ass"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "Erstellungsdag ass" msgstr "Erstellungsdag ass"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "dobäigesat virun" msgstr "dobäigesat virun"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "dobäigesat no" msgstr "dobäigesat no"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "verännert virun" msgstr "verännert virun"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "verännert no" msgstr "verännert no"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "huet dës Etikett net" msgstr "huet dës Etikett net"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "huet keng ASN" msgstr "huet keng ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "Titel oder Inhalt enthalen" msgstr "Titel oder Inhalt enthalen"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "Volltextsich" msgstr "Volltextsich"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "ähnlech Dokumenter" msgstr "ähnlech Dokumenter"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "huet Etiketten an" 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" msgid "rule type"
msgstr "Reegeltyp" msgstr "Reegeltyp"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "Wäert" msgstr "Wäert"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "Filterreegel" msgstr "Filterreegel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "Filterreegelen" msgstr "Filterreegelen"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ongëltege regulären Ausdrock: %(error)s" msgstr "Ongëltege regulären Ausdrock: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ongëlteg Faarf." msgstr "Ongëlteg Faarf."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Fichierstyp %(type)s net ënnerstëtzt" msgstr "Fichierstyp %(type)s net ënnerstëtzt"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Ongëlteg Zeechen detektéiert." msgstr "Ongëlteg Zeechen detektéiert."
@ -444,87 +556,87 @@ msgstr "Passwuert"
msgid "Sign in" msgid "Sign in"
msgstr "Umellen" msgstr "Umellen"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Englesch (USA)" msgstr "Englesch (USA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Belarusesch" msgstr "Belarusesch"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tschechesch" msgstr "Tschechesch"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dänesch" msgstr "Dänesch"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Däitsch" msgstr "Däitsch"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Englesch (GB)" msgstr "Englesch (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spuenesch" msgstr "Spuenesch"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Franséisch" msgstr "Franséisch"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italienesch" msgstr "Italienesch"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Lëtzebuergesch" msgstr "Lëtzebuergesch"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Hollännesch" msgstr "Hollännesch"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polnesch" msgstr "Polnesch"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugisesch (Brasilien)" msgstr "Portugisesch (Brasilien)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugisesch" msgstr "Portugisesch"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumänesch" msgstr "Rumänesch"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russesch" msgstr "Russesch"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slowenesch" msgstr "Slowenesch"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbesch" msgstr "Serbesch"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Schwedesch" msgstr "Schwedesch"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Tierkesch" msgstr "Tierkesch"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Chinesesch (Vereinfacht)" msgstr "Chinesesch (Vereinfacht)"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-10-27 09:51\n" "PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Language: nl_NL\n" "Language: nl_NL\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documenten" msgstr "Documenten"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Elk woord" msgstr "Elk woord"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Alle woorden" msgstr "Alle woorden"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Exacte overeenkomst" msgstr "Exacte overeenkomst"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Reguliere expressie" msgstr "Reguliere expressie"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Gelijkaardig woord" msgstr "Gelijkaardig woord"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatisch" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "naam" msgstr "naam"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "Overeenkomst" msgstr "Overeenkomst"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "Algoritme voor het bepalen van de overeenkomst" msgstr "Algoritme voor het bepalen van de overeenkomst"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "is niet hoofdlettergevoelig" msgstr "is niet hoofdlettergevoelig"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "correspondent" msgstr "correspondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "correspondenten" msgstr "correspondenten"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "Kleur" msgstr "Kleur"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "is \"Postvak in\"-label" 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." 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." 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" msgid "tag"
msgstr "label" msgstr "label"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "labels" msgstr "labels"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "documenttype" msgstr "documenttype"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "documenttypen" msgstr "documenttypen"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "pad" msgstr "pad"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "opslag pad" msgstr "opslag pad"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "opslag paden" msgstr "opslag paden"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Niet versleuteld" msgstr "Niet versleuteld"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Versleuteld met GNU Privacy Guard" msgstr "Versleuteld met GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titel" msgstr "titel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "inhoud" 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." 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." 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" msgid "mime type"
msgstr "mimetype" msgstr "mimetype"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "checksum" msgstr "checksum"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "De checksum van het oorspronkelijke document." msgstr "De checksum van het oorspronkelijke document."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "archief checksum" msgstr "archief checksum"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "De checksum van het gearchiveerde 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" msgid "created"
msgstr "aangemaakt" msgstr "aangemaakt"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "gewijzigd" msgstr "gewijzigd"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "type opslag" msgstr "type opslag"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "toegevoegd" msgstr "toegevoegd"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "bestandsnaam" msgstr "bestandsnaam"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Huidige bestandsnaam in opslag" msgstr "Huidige bestandsnaam in opslag"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "Bestandsnaam in archief" msgstr "Bestandsnaam in archief"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Huidige bestandsnaam in archief" 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" msgid "archive serial number"
msgstr "serienummer in archief" msgstr "serienummer in archief"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "De positie van dit document in je fysieke documentenarchief." msgstr "De positie van dit document in je fysieke documentenarchief."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "document" msgstr "document"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documenten" msgstr "documenten"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "debug" msgstr "debug"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informatie" msgstr "informatie"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "waarschuwing" msgstr "waarschuwing"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "fout" msgstr "fout"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritisch" msgstr "kritisch"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "groep" msgstr "groep"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "bericht" msgstr "bericht"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "niveau" msgstr "niveau"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "bericht" msgstr "bericht"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "berichten" msgstr "berichten"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "opgeslagen view" msgstr "opgeslagen view"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "opgeslagen views" msgstr "opgeslagen views"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "gebruiker" msgstr "gebruiker"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "weergeven op dashboard" msgstr "weergeven op dashboard"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "weergeven in zijbalk" msgstr "weergeven in zijbalk"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sorteerveld" msgstr "sorteerveld"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "omgekeerd sorteren" msgstr "omgekeerd sorteren"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "titel bevat" msgstr "titel bevat"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "inhoud bevat" msgstr "inhoud bevat"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN is" msgstr "ASN is"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "correspondent is" msgstr "correspondent is"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "documenttype is" msgstr "documenttype is"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "zit in \"Postvak in\"" msgstr "zit in \"Postvak in\""
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "heeft label" msgstr "heeft label"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "heeft één van de labels" msgstr "heeft één van de labels"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "aangemaakt voor" msgstr "aangemaakt voor"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "aangemaakt na" msgstr "aangemaakt na"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "aangemaakt jaar is" msgstr "aangemaakt jaar is"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "aangemaakte maand is" msgstr "aangemaakte maand is"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "aangemaakte dag is" msgstr "aangemaakte dag is"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "toegevoegd voor" msgstr "toegevoegd voor"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "toegevoegd na" msgstr "toegevoegd na"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "gewijzigd voor" msgstr "gewijzigd voor"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "gewijzigd na" msgstr "gewijzigd na"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "heeft geen label" msgstr "heeft geen label"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "heeft geen ASN" msgstr "heeft geen ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "titel of inhoud bevat" msgstr "titel of inhoud bevat"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "inhoud doorzoeken" msgstr "inhoud doorzoeken"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "meer zoals dit" msgstr "meer zoals dit"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "heeft 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" msgid "rule type"
msgstr "type regel" msgstr "type regel"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "waarde" msgstr "waarde"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filterregel" msgstr "filterregel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filterregels" msgstr "filterregels"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "gestart" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ongeldige reguliere expressie: %(error)s" msgstr "Ongeldige reguliere expressie: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ongeldig kleur." msgstr "Ongeldig kleur."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Bestandstype %(type)s niet ondersteund" msgstr "Bestandstype %(type)s niet ondersteund"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Ongeldige variabele ontdekt." msgstr "Ongeldige variabele ontdekt."
@ -444,87 +556,87 @@ msgstr "Wachtwoord"
msgid "Sign in" msgid "Sign in"
msgstr "Aanmelden" msgstr "Aanmelden"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engels (US)" msgstr "Engels (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Wit-Russisch" msgstr "Wit-Russisch"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tsjechisch" msgstr "Tsjechisch"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Deens" msgstr "Deens"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Duits" msgstr "Duits"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engels (Brits)" msgstr "Engels (Brits)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spaans" msgstr "Spaans"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Frans" msgstr "Frans"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiaans" msgstr "Italiaans"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburgs" msgstr "Luxemburgs"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Nederlands" msgstr "Nederlands"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Pools" msgstr "Pools"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugees (Brazilië)" msgstr "Portugees (Brazilië)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugees" msgstr "Portugees"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Roemeens" msgstr "Roemeens"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Sloveens" msgstr "Sloveens"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Servisch" msgstr "Servisch"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Zweeds" msgstr "Zweeds"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turks" msgstr "Turks"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Chinees (vereenvoudigd)" msgstr "Chinees (vereenvoudigd)"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-03 08:59\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
"Language: no_NO\n" "Language: no_NO\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Hvilket som helst ord" msgstr "Hvilket som helst ord"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Alle ord" msgstr "Alle ord"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Eksakt match" msgstr "Eksakt match"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regulære uttrykk" msgstr "Regulære uttrykk"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Fuzzy word" msgstr "Fuzzy word"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatisk" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "navn" msgstr "navn"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "treff" msgstr "treff"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "samsvarende algoritme" msgstr "samsvarende algoritme"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "er insensitiv" msgstr "er insensitiv"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "korrespondent" msgstr "korrespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korrespondenter" msgstr "korrespondenter"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "farge" msgstr "farge"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "er innboks 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." 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." 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" msgid "tag"
msgstr "tagg" msgstr "tagg"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "tagger" msgstr "tagger"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "dokument type" msgstr "dokument type"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "dokumenttyper" msgstr "dokumenttyper"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "sti" msgstr "sti"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "lagringssti" msgstr "lagringssti"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "lagringsveier" msgstr "lagringsveier"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Ukryptert" msgstr "Ukryptert"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Kryptert med GNU Personvernvakt" msgstr "Kryptert med GNU Personvernvakt"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "tittel" msgstr "tittel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "innhold" 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." 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." 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" msgid "mime type"
msgstr "mime type" msgstr "mime type"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "sjekksum" msgstr "sjekksum"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Sjekksummen av det opprinnelige dokumentet." msgstr "Sjekksummen av det opprinnelige dokumentet."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arkiv sjekksum" msgstr "arkiv sjekksum"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Sjekksummen av det arkiverte dokumentet." 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" msgid "created"
msgstr "opprettet" msgstr "opprettet"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "endret" msgstr "endret"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "lagringstype" msgstr "lagringstype"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "lagt til" msgstr "lagt til"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "filnavn" msgstr "filnavn"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Gjeldende filnavn i lagring" msgstr "Gjeldende filnavn i lagring"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "arkiver filnavn" msgstr "arkiver filnavn"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Gjeldende arkiv filnavn i lagring" 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" msgid "archive serial number"
msgstr "arkiver serienummer" msgstr "arkiver serienummer"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Dokumentets posisjon i ditt fysiske dokumentarkiv." msgstr "Dokumentets posisjon i ditt fysiske dokumentarkiv."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenter" msgstr "dokumenter"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "feilsøk" msgstr "feilsøk"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informasjon" msgstr "informasjon"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "advarsel" msgstr "advarsel"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "feil" msgstr "feil"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritisk" msgstr "kritisk"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "gruppe" msgstr "gruppe"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "melding" msgstr "melding"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivå" msgstr "nivå"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "Logg" msgstr "Logg"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logger" msgstr "logger"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "lagret visning" msgstr "lagret visning"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "lagrede visninger" msgstr "lagrede visninger"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "bruker" msgstr "bruker"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "vis på dashbordet" msgstr "vis på dashbordet"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "vis i sidestolpen" msgstr "vis i sidestolpen"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sorter felt" msgstr "sorter felt"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "sorter på baksiden" msgstr "sorter på baksiden"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "tittelen inneholder" msgstr "tittelen inneholder"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "innholdet inneholder" msgstr "innholdet inneholder"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN er" msgstr "ASN er"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "tilsvarendet er" msgstr "tilsvarendet er"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "dokumenttype er" msgstr "dokumenttype er"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "er i innboksen" msgstr "er i innboksen"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "har tagg" msgstr "har tagg"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "har en tag" msgstr "har en tag"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "opprettet før" msgstr "opprettet før"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "opprettet etter" msgstr "opprettet etter"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "opprettet år er" msgstr "opprettet år er"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "opprettet måned er" msgstr "opprettet måned er"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "opprettet dag er" msgstr "opprettet dag er"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "lagt til før" msgstr "lagt til før"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "lagt til etter" msgstr "lagt til etter"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "endret før" msgstr "endret før"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "endret etter" msgstr "endret etter"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "har ikke tagg" msgstr "har ikke tagg"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "har ikke ASN" msgstr "har ikke ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "tittel eller innhold inneholder" msgstr "tittel eller innhold inneholder"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "full tekst spørring" msgstr "full tekst spørring"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mer som dette" msgstr "mer som dette"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "har tags i" 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" msgid "rule type"
msgstr "Type regel" msgstr "Type regel"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "verdi" msgstr "verdi"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtrer regel" msgstr "filtrer regel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtrer regler" msgstr "filtrer regler"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "startet" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ugyldig regulært uttrykk: %(error)s" msgstr "Ugyldig regulært uttrykk: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ugyldig farge." msgstr "Ugyldig farge."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Filtype %(type)s støttes ikke" msgstr "Filtype %(type)s støttes ikke"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Ugyldig variabel oppdaget." msgstr "Ugyldig variabel oppdaget."
@ -444,87 +556,87 @@ msgstr "Passord"
msgid "Sign in" msgid "Sign in"
msgstr "Logg inn" msgstr "Logg inn"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engelsk (US)" msgstr "Engelsk (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Hviterussisk" msgstr "Hviterussisk"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tsjekkisk" msgstr "Tsjekkisk"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dansk" msgstr "Dansk"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Tysk" msgstr "Tysk"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engelsk (GB)" msgstr "Engelsk (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spansk" msgstr "Spansk"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Fransk" msgstr "Fransk"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiensk" msgstr "Italiensk"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxembourgsk" msgstr "Luxembourgsk"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Nederlandsk" msgstr "Nederlandsk"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polsk" msgstr "Polsk"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasil)" msgstr "Portugisisk (Brasil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugisisk" msgstr "Portugisisk"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumensk" msgstr "Rumensk"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russisk" msgstr "Russisk"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovenian" msgstr "Slovenian"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbisk" msgstr "Serbisk"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Svensk" msgstr "Svensk"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Tyrkisk" msgstr "Tyrkisk"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Kinesisk forenklet" msgstr "Kinesisk forenklet"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-17 11:20\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"Language: pl_PL\n" "Language: pl_PL\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenty" msgstr "Dokumenty"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Dowolne słowo" msgstr "Dowolne słowo"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Wszystkie słowa" msgstr "Wszystkie słowa"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Dokładne dopasowanie" msgstr "Dokładne dopasowanie"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Wyrażenie regularne" msgstr "Wyrażenie regularne"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Dopasowanie rozmyte" msgstr "Dopasowanie rozmyte"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatyczny" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nazwa" msgstr "nazwa"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "dopasowanie" msgstr "dopasowanie"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algorytm dopasowania" msgstr "algorytm dopasowania"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "bez rozróżniania wielkości znaków" 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" msgid "correspondent"
msgstr "korespondent" msgstr "korespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korespondenci" msgstr "korespondenci"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "kolor" msgstr "kolor"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "jest tagiem skrzynki odbiorczej" 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." 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." 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" msgid "tag"
msgstr "znacznik" msgstr "znacznik"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "tagi" msgstr "tagi"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "typ dokumentu" msgstr "typ dokumentu"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "typy dokumentów" msgstr "typy dokumentów"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "ścieżka" msgstr "ścieżka"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "ścieżka przechowywania" msgstr "ścieżka przechowywania"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "ścieżki składowania" msgstr "ścieżki składowania"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Niezaszyfrowane" msgstr "Niezaszyfrowane"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Zaszyfrowane przy użyciu GNU Privacy Guard" msgstr "Zaszyfrowane przy użyciu GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "tytuł" msgstr "tytuł"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "zawartość" 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." 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." 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" msgid "mime type"
msgstr "mime type" msgstr "mime type"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "suma kontrolna" msgstr "suma kontrolna"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Suma kontrolna oryginalnego dokumentu." msgstr "Suma kontrolna oryginalnego dokumentu."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "suma kontrolna archiwum" msgstr "suma kontrolna archiwum"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Suma kontrolna zarchiwizowanego dokumentu." 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" msgid "created"
msgstr "utworzono" msgstr "utworzono"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "zmodyfikowano" msgstr "zmodyfikowano"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "typ przechowywania" msgstr "typ przechowywania"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "dodano" msgstr "dodano"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nazwa pliku" msgstr "nazwa pliku"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Aktualna nazwa pliku w pamięci" msgstr "Aktualna nazwa pliku w pamięci"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nazwa pliku archiwum" msgstr "nazwa pliku archiwum"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Aktualna nazwa pliku archiwum w pamięci" 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" msgid "archive serial number"
msgstr "numer seryjny archiwum" msgstr "numer seryjny archiwum"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Pozycja tego dokumentu w archiwum dokumentów fizycznych." msgstr "Pozycja tego dokumentu w archiwum dokumentów fizycznych."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenty" msgstr "dokumenty"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "debugowanie" msgstr "debugowanie"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informacja" msgstr "informacja"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "ostrzeżenie" msgstr "ostrzeżenie"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "błąd" msgstr "błąd"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "krytyczne" msgstr "krytyczne"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupa" msgstr "grupa"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "wiadomość" msgstr "wiadomość"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "poziom" msgstr "poziom"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "log" msgstr "log"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logi" msgstr "logi"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "zapisany widok" msgstr "zapisany widok"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "zapisane widoki" msgstr "zapisane widoki"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "użytkownik" msgstr "użytkownik"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "pokaż na stronie głównej" msgstr "pokaż na stronie głównej"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "pokaż na pasku bocznym" msgstr "pokaż na pasku bocznym"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "pole sortowania" msgstr "pole sortowania"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "sortuj malejąco" msgstr "sortuj malejąco"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "tytuł zawiera" msgstr "tytuł zawiera"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "zawartość zawiera" msgstr "zawartość zawiera"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "numer archiwum jest" msgstr "numer archiwum jest"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "korespondentem jest" msgstr "korespondentem jest"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "typ dokumentu jest" msgstr "typ dokumentu jest"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "jest w skrzynce odbiorczej" msgstr "jest w skrzynce odbiorczej"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ma tag" msgstr "ma tag"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ma dowolny tag" msgstr "ma dowolny tag"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "utworzony przed" msgstr "utworzony przed"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "utworzony po" msgstr "utworzony po"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "rok utworzenia to" msgstr "rok utworzenia to"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "miesiąc utworzenia to" msgstr "miesiąc utworzenia to"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dzień utworzenia to" msgstr "dzień utworzenia to"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "dodany przed" msgstr "dodany przed"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "dodany po" msgstr "dodany po"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "zmodyfikowany przed" msgstr "zmodyfikowany przed"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "zmodyfikowany po" msgstr "zmodyfikowany po"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "nie ma tagu" msgstr "nie ma tagu"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "nie ma numeru archiwum" msgstr "nie ma numeru archiwum"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "tytuł lub zawartość zawiera" msgstr "tytuł lub zawartość zawiera"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "zapytanie pełnotekstowe" msgstr "zapytanie pełnotekstowe"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "podobne dokumenty" msgstr "podobne dokumenty"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "ma znaczniki w" 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" msgid "rule type"
msgstr "typ reguły" msgstr "typ reguły"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "wartość" msgstr "wartość"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "reguła filtrowania" msgstr "reguła filtrowania"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "reguły filtrowania" msgstr "reguły filtrowania"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "start" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Nieprawidłowe wyrażenie regularne: %(error)s" msgstr "Nieprawidłowe wyrażenie regularne: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Nieprawidłowy kolor." msgstr "Nieprawidłowy kolor."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Typ pliku %(type)s nie jest obsługiwany" msgstr "Typ pliku %(type)s nie jest obsługiwany"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Wykryto nieprawidłową zmienną." msgstr "Wykryto nieprawidłową zmienną."
@ -444,87 +556,87 @@ msgstr "Hasło"
msgid "Sign in" msgid "Sign in"
msgstr "Zaloguj się" msgstr "Zaloguj się"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Angielski (USA)" msgstr "Angielski (USA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Białoruski" msgstr "Białoruski"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Czeski" msgstr "Czeski"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Duński" msgstr "Duński"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Niemiecki" msgstr "Niemiecki"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Angielski (Wielka Brytania)" msgstr "Angielski (Wielka Brytania)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Hiszpański" msgstr "Hiszpański"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francuski" msgstr "Francuski"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Włoski" msgstr "Włoski"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luksemburski" msgstr "Luksemburski"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Holenderski" msgstr "Holenderski"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polski" msgstr "Polski"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazylia)" msgstr "Portugalski (Brazylia)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugalski" msgstr "Portugalski"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumuński" msgstr "Rumuński"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Rosyjski" msgstr "Rosyjski"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Słoweński" msgstr "Słoweński"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Serbski" msgstr "Serbski"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Szwedzki" msgstr "Szwedzki"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turecki" msgstr "Turecki"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Chiński uproszczony" msgstr "Chiński uproszczony"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n" "Language: pt_BR\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Qualquer palavra" msgstr "Qualquer palavra"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Todas as palavras" msgstr "Todas as palavras"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Detecção exata" msgstr "Detecção exata"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Expressão regular" msgstr "Expressão regular"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Palavra difusa (fuzzy)" msgstr "Palavra difusa (fuzzy)"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automático" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nome" msgstr "nome"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "detecção" msgstr "detecção"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritmo de detecção" msgstr "algoritmo de detecção"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "diferencia maiúsculas de minúsculas" 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" msgid "correspondent"
msgstr "correspondente" msgstr "correspondente"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "correspondentes" msgstr "correspondentes"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "cor" msgstr "cor"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "é etiqueta caixa de entrada" 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." 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." 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" msgid "tag"
msgstr "etiqueta" msgstr "etiqueta"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiquetas" msgstr "etiquetas"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tipo de documento" msgstr "tipo de documento"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipos de documento" msgstr "tipos de documento"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Não encriptado" msgstr "Não encriptado"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Encriptado com GNU Privacy Guard" msgstr "Encriptado com GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "título" msgstr "título"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "conteúdo" 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." 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." 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" msgid "mime type"
msgstr "tipo mime" msgstr "tipo mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "some de verificação" msgstr "some de verificação"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "A soma de verificação original do documento." msgstr "A soma de verificação original do documento."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "Soma de verificação de arquivamento." msgstr "Soma de verificação de arquivamento."
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "A soma de verificação do documento arquivado." 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" msgid "created"
msgstr "criado" msgstr "criado"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificado" msgstr "modificado"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tipo de armazenamento" msgstr "tipo de armazenamento"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "adicionado" msgstr "adicionado"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nome do arquivo" msgstr "nome do arquivo"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nome do arquivo atual armazenado" msgstr "Nome do arquivo atual armazenado"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nome do arquivo para arquivamento" msgstr "nome do arquivo para arquivamento"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nome do arquivo para arquivamento armazenado" 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" msgid "archive serial number"
msgstr "número de sério de arquivamento" 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." msgid "The position of this document in your physical document archive."
msgstr "A posição deste documento no seu arquivamento físico." 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" msgid "document"
msgstr "documento" msgstr "documento"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documentos" msgstr "documentos"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "debug" msgstr "debug"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informação" msgstr "informação"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "aviso" msgstr "aviso"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "erro" msgstr "erro"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "crítico" msgstr "crítico"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupo" msgstr "grupo"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "mensagem" msgstr "mensagem"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nível" msgstr "nível"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "log" msgstr "log"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logs" msgstr "logs"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "visualização" msgstr "visualização"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "visualizações" msgstr "visualizações"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "usuário" msgstr "usuário"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "exibir no painel de controle" msgstr "exibir no painel de controle"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "exibir no painel lateral" msgstr "exibir no painel lateral"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "ordenar campo" msgstr "ordenar campo"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "odernar reverso" msgstr "odernar reverso"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "título contém" msgstr "título contém"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "conteúdo contém" msgstr "conteúdo contém"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "NSA é" msgstr "NSA é"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "correspondente é" msgstr "correspondente é"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "tipo de documento é" msgstr "tipo de documento é"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "é caixa de entrada" msgstr "é caixa de entrada"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "contém etiqueta" msgstr "contém etiqueta"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "contém qualquer etiqueta" msgstr "contém qualquer etiqueta"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "criado antes de" msgstr "criado antes de"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "criado depois de" msgstr "criado depois de"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "ano de criação é" msgstr "ano de criação é"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "mês de criação é" msgstr "mês de criação é"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dia de criação é" msgstr "dia de criação é"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "adicionado antes de" msgstr "adicionado antes de"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "adicionado depois de" msgstr "adicionado depois de"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificado antes de" msgstr "modificado antes de"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificado depois de" msgstr "modificado depois de"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "não tem etiqueta" msgstr "não tem etiqueta"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "não tem NSA" msgstr "não tem NSA"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "título ou conteúdo contém" msgstr "título ou conteúdo contém"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "pesquisa de texto completo" msgstr "pesquisa de texto completo"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mais como este" msgstr "mais como este"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "contém etiqueta em" 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" msgid "rule type"
msgstr "tipo de regra" msgstr "tipo de regra"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valor" msgstr "valor"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "regra de filtragem" msgstr "regra de filtragem"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "regras de filtragem" msgstr "regras de filtragem"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Expressão regular inválida: %(error)s" msgstr "Expressão regular inválida: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Cor inválida." msgstr "Cor inválida."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Tipo de arquivo %(type)s não suportado" msgstr "Tipo de arquivo %(type)s não suportado"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "" msgstr ""
@ -444,87 +556,87 @@ msgstr "Senha"
msgid "Sign in" msgid "Sign in"
msgstr "Entrar" msgstr "Entrar"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Inglês (EUA)" msgstr "Inglês (EUA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "" msgstr ""
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Tcheco" msgstr "Tcheco"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dinamarquês" msgstr "Dinamarquês"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Alemão" msgstr "Alemão"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Inglês (GB)" msgstr "Inglês (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Espanhol" msgstr "Espanhol"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francês" msgstr "Francês"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiano" msgstr "Italiano"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburguês" msgstr "Luxemburguês"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Holandês" msgstr "Holandês"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polonês" msgstr "Polonês"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Português (Brasil)" msgstr "Português (Brasil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Português" msgstr "Português"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Romeno" msgstr "Romeno"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "" msgstr ""
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr ""
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Sueco" msgstr "Sueco"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "" msgstr ""
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "" msgstr ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Language: pt_PT\n" "Language: pt_PT\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Qualquer palavra" msgstr "Qualquer palavra"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Todas as palavras" msgstr "Todas as palavras"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Detecção exata" msgstr "Detecção exata"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Expressão regular" msgstr "Expressão regular"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Palavra difusa (fuzzy)" msgstr "Palavra difusa (fuzzy)"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automático" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nome" msgstr "nome"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "correspondência" msgstr "correspondência"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritmo correspondente" msgstr "algoritmo correspondente"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "é insensível" msgstr "é insensível"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "correspondente" msgstr "correspondente"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "correspondentes" msgstr "correspondentes"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "cor" msgstr "cor"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "é etiqueta de novo" 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." 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." 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" msgid "tag"
msgstr "etiqueta" msgstr "etiqueta"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiquetas" msgstr "etiquetas"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tipo de documento" msgstr "tipo de documento"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipos de documento" msgstr "tipos de documento"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Não encriptado" msgstr "Não encriptado"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Encriptado com GNU Privacy Guard" msgstr "Encriptado com GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "título" msgstr "título"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "conteúdo" 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." 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." 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" msgid "mime type"
msgstr "tipo mime" msgstr "tipo mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "soma de verificação" msgstr "soma de verificação"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "A soma de verificação do documento original." msgstr "A soma de verificação do documento original."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arquivar soma de verificação" msgstr "arquivar soma de verificação"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "A soma de verificação do documento arquivado." 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" msgid "created"
msgstr "criado" msgstr "criado"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificado" msgstr "modificado"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tipo de armazenamento" msgstr "tipo de armazenamento"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "adicionado" msgstr "adicionado"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nome de ficheiro" msgstr "nome de ficheiro"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nome do arquivo atual no armazenamento" msgstr "Nome do arquivo atual no armazenamento"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nome do ficheiro de arquivo" msgstr "nome do ficheiro de arquivo"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nome do arquivo atual em no armazenamento" 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" msgid "archive serial number"
msgstr "numero de série de arquivo" 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." msgid "The position of this document in your physical document archive."
msgstr "A posição do documento no seu arquivo físico de documentos." 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" msgid "document"
msgstr "documento" msgstr "documento"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documentos" msgstr "documentos"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "depurar" msgstr "depurar"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informação" msgstr "informação"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "aviso" msgstr "aviso"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "erro" msgstr "erro"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "crítico" msgstr "crítico"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupo" msgstr "grupo"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "mensagem" msgstr "mensagem"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nível" msgstr "nível"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "registo" msgstr "registo"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "registos" msgstr "registos"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "vista guardada" msgstr "vista guardada"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "vistas guardadas" msgstr "vistas guardadas"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "utilizador" msgstr "utilizador"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "exibir no painel de controlo" msgstr "exibir no painel de controlo"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "mostrar na navegação lateral" msgstr "mostrar na navegação lateral"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "ordenar campo" msgstr "ordenar campo"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "ordenar inversamente" msgstr "ordenar inversamente"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "o título contém" msgstr "o título contém"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "o conteúdo contém" msgstr "o conteúdo contém"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "O NSA é" msgstr "O NSA é"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "o correspondente é" msgstr "o correspondente é"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "o tipo de documento é" msgstr "o tipo de documento é"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "está na entrada" msgstr "está na entrada"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "tem etiqueta" msgstr "tem etiqueta"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "tem qualquer etiqueta" msgstr "tem qualquer etiqueta"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "criado antes" msgstr "criado antes"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "criado depois" msgstr "criado depois"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "ano criada é" msgstr "ano criada é"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "mês criado é" msgstr "mês criado é"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dia criado é" msgstr "dia criado é"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "adicionada antes" msgstr "adicionada antes"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "adicionado depois de" msgstr "adicionado depois de"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificado antes de" msgstr "modificado antes de"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificado depois de" msgstr "modificado depois de"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "não tem etiqueta" msgstr "não tem etiqueta"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "não possui um NSA" msgstr "não possui um NSA"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "título ou conteúdo contém" msgstr "título ou conteúdo contém"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "consulta de texto completo" msgstr "consulta de texto completo"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mais como este" msgstr "mais como este"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "tem etiquetas em" 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" msgid "rule type"
msgstr "tipo de regra" msgstr "tipo de regra"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valor" msgstr "valor"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "regra de filtragem" msgstr "regra de filtragem"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "regras de filtragem" msgstr "regras de filtragem"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Expressão regular inválida: %(error)s" msgstr "Expressão regular inválida: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Cor invalida." msgstr "Cor invalida."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Tipo de arquivo %(type)s não suportado" msgstr "Tipo de arquivo %(type)s não suportado"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "" msgstr ""
@ -444,87 +556,87 @@ msgstr "Palavra-passe"
msgid "Sign in" msgid "Sign in"
msgstr "Iniciar sessão" msgstr "Iniciar sessão"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Inglês (EUA)" msgstr "Inglês (EUA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "" msgstr ""
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Checo" msgstr "Checo"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Dinamarquês" msgstr "Dinamarquês"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Deutsch" msgstr "Deutsch"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Inglês (GB)" msgstr "Inglês (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Espanhol" msgstr "Espanhol"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Français" msgstr "Français"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiano" msgstr "Italiano"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburguês" msgstr "Luxemburguês"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Nederlandse" msgstr "Nederlandse"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polaco" msgstr "Polaco"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Português (Brasil)" msgstr "Português (Brasil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Português" msgstr "Português"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Romeno" msgstr "Romeno"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "" msgstr ""
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr ""
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Sueco" msgstr "Sueco"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "" msgstr ""
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "" msgstr ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Romanian\n" "Language-Team: Romanian\n"
"Language: ro_RO\n" "Language: ro_RO\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Documente" msgstr "Documente"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Orice cuvânt" msgstr "Orice cuvânt"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Toate cuvintele" msgstr "Toate cuvintele"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Potrivire exactă" msgstr "Potrivire exactă"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Expresie regulată" msgstr "Expresie regulată"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Mod neatent" msgstr "Mod neatent"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automat" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "nume" msgstr "nume"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "potrivire" msgstr "potrivire"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritm de potrivire" msgstr "algoritm de potrivire"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "nu ține cont de majuscule" msgstr "nu ține cont de majuscule"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "corespondent" msgstr "corespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "corespondenți" msgstr "corespondenți"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "culoare" msgstr "culoare"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "este etichetă inbox" 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." 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." msgstr "Marchează aceasta eticheta ca etichetă inbox: Toate documentele nou consumate primesc aceasta eticheta."
#: documents/models.py:78 #: documents/models.py:81
msgid "tag" msgid "tag"
msgstr "etichetă" msgstr "etichetă"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etichete" msgstr "etichete"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tip de document" msgstr "tip de document"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipuri de document" msgstr "tipuri de document"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Necriptat" msgstr "Necriptat"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Criptat cu GNU Privacy Guard" msgstr "Criptat cu GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titlu" msgstr "titlu"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "conținut" 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." 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." 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" msgid "mime type"
msgstr "tip MIME" msgstr "tip MIME"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "sumă de control" msgstr "sumă de control"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Suma de control a documentului original." msgstr "Suma de control a documentului original."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "suma de control a arhivei" msgstr "suma de control a arhivei"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Suma de control a documentului arhivat." 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" msgid "created"
msgstr "creat" msgstr "creat"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "modificat" msgstr "modificat"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tip de stocare" msgstr "tip de stocare"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "adăugat" msgstr "adăugat"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "nume fișier" msgstr "nume fișier"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Numele curent al fișierului stocat" msgstr "Numele curent al fișierului stocat"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "nume fișier arhiva" msgstr "nume fișier arhiva"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Numele curent al arhivei stocate" 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" msgid "archive serial number"
msgstr "număr serial in arhiva" 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." msgid "The position of this document in your physical document archive."
msgstr "Poziția acestui document in arhiva fizica." msgstr "Poziția acestui document in arhiva fizica."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "document" msgstr "document"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "documente" msgstr "documente"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "depanare" msgstr "depanare"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informații" msgstr "informații"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "avertizare" msgstr "avertizare"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "eroare" msgstr "eroare"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "critic" msgstr "critic"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grup" msgstr "grup"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "mesaj" msgstr "mesaj"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivel" msgstr "nivel"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "jurnal" msgstr "jurnal"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "jurnale" msgstr "jurnale"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "vizualizare" msgstr "vizualizare"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "vizualizări" msgstr "vizualizări"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "utilizator" msgstr "utilizator"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "afișează pe tabloul de bord" msgstr "afișează pe tabloul de bord"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "afișează in bara laterala" msgstr "afișează in bara laterala"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sortează camp" msgstr "sortează camp"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "sortează invers" msgstr "sortează invers"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "titlul conține" msgstr "titlul conține"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "conținutul conține" msgstr "conținutul conține"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "Avizul prealabil de expediție este" msgstr "Avizul prealabil de expediție este"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "corespondentul este" msgstr "corespondentul este"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "tipul documentului este" msgstr "tipul documentului este"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "este în inbox" msgstr "este în inbox"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "are eticheta" msgstr "are eticheta"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "are orice eticheta" msgstr "are orice eticheta"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "creat înainte de" msgstr "creat înainte de"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "creat după" msgstr "creat după"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "anul creării este" msgstr "anul creării este"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "luna creării este" msgstr "luna creării este"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "ziua creării este" msgstr "ziua creării este"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "adăugat înainte de" msgstr "adăugat înainte de"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "adăugat după" msgstr "adăugat după"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "modificat înainte de" msgstr "modificat înainte de"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "modificat după" msgstr "modificat după"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "nu are etichetă" msgstr "nu are etichetă"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "nu are aviz prealabil de expediție" msgstr "nu are aviz prealabil de expediție"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "titlul sau conținutul conține" msgstr "titlul sau conținutul conține"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "query fulltext" msgstr "query fulltext"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mai multe ca aceasta" msgstr "mai multe ca aceasta"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "are etichete în" 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" msgid "rule type"
msgstr "tip de regula" msgstr "tip de regula"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "valoare" msgstr "valoare"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "regulă de filtrare" msgstr "regulă de filtrare"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "reguli de filtrare" msgstr "reguli de filtrare"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Expresie regulată invalida: %(error)s" msgstr "Expresie regulată invalida: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Culoare invalidă." msgstr "Culoare invalidă."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Tip de fișier %(type)s nesuportat" msgstr "Tip de fișier %(type)s nesuportat"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "" msgstr ""
@ -444,87 +556,87 @@ msgstr "Parolă"
msgid "Sign in" msgid "Sign in"
msgstr "Conectare" msgstr "Conectare"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engleză (Americană)" msgstr "Engleză (Americană)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "" msgstr ""
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Cehă" msgstr "Cehă"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Daneză" msgstr "Daneză"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Germană" msgstr "Germană"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engleză (Britanică)" msgstr "Engleză (Britanică)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spaniolă" msgstr "Spaniolă"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Franceză" msgstr "Franceză"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italiană" msgstr "Italiană"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luxemburgheză" msgstr "Luxemburgheză"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Olandeză" msgstr "Olandeză"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Poloneză" msgstr "Poloneză"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugheză (Brazilia)" msgstr "Portugheză (Brazilia)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugheză" msgstr "Portugheză"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Română" msgstr "Română"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Rusă" msgstr "Rusă"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "" msgstr ""
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr ""
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Suedeză" msgstr "Suedeză"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "" msgstr ""
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "" msgstr ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-03 16:12\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Language: ru_RU\n" "Language: ru_RU\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Документы" msgstr "Документы"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Любые слова" msgstr "Любые слова"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Все слова" msgstr "Все слова"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Точное соответствие" msgstr "Точное соответствие"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Регулярное выражение" msgstr "Регулярное выражение"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "\"Нечёткий\" режим" msgstr "\"Нечёткий\" режим"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Автоматически" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "имя" msgstr "имя"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "соответствие" msgstr "соответствие"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "алгоритм сопоставления" msgstr "алгоритм сопоставления"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "без учёта регистра" msgstr "без учёта регистра"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "корреспондент" msgstr "корреспондент"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "корреспонденты" msgstr "корреспонденты"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "цвет" msgstr "цвет"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "это входящий тег" 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." msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "Отметить этот тег как «Входящий»: все вновь добавленные документы будут помечены тегами «Входящие»." msgstr "Отметить этот тег как «Входящий»: все вновь добавленные документы будут помечены тегами «Входящие»."
#: documents/models.py:78 #: documents/models.py:81
msgid "tag" msgid "tag"
msgstr "тег" msgstr "тег"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "теги" msgstr "теги"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "тип документа" msgstr "тип документа"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "типы документов" msgstr "типы документов"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "путь" msgstr "путь"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "путь к хранилищу" msgstr "путь к хранилищу"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "пути хранения" msgstr "пути хранения"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "не зашифровано" msgstr "не зашифровано"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Зашифровано с помощью GNU Privacy Guard" msgstr "Зашифровано с помощью GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "заголовок" msgstr "заголовок"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "содержимое" 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." msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "Это поле используется в основном для поиска." msgstr "Это поле используется в основном для поиска."
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "тип Mime" msgstr "тип Mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "контрольная сумма" msgstr "контрольная сумма"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Контрольная сумма оригинального документа." msgstr "Контрольная сумма оригинального документа."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "контрольная сумма архива" msgstr "контрольная сумма архива"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Контрольная сумма архивного документа." 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" msgid "created"
msgstr "создано" msgstr "создано"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "изменено" msgstr "изменено"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "тип хранилища" msgstr "тип хранилища"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "добавлено" msgstr "добавлено"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "имя файла" msgstr "имя файла"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Текущее имя файла в хранилище" msgstr "Текущее имя файла в хранилище"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "имя файла архива" msgstr "имя файла архива"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Текущее имя файла архива в хранилище" 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" msgid "archive serial number"
msgstr "архивный номер (АН)" msgstr "архивный номер (АН)"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Позиция этого документа в вашем физическом архиве документов." msgstr "Позиция этого документа в вашем физическом архиве документов."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "документ" msgstr "документ"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "документы" msgstr "документы"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "отладка" msgstr "отладка"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "информация" msgstr "информация"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "предупреждение" msgstr "предупреждение"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "ошибка" msgstr "ошибка"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "критическая" msgstr "критическая"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "группа" msgstr "группа"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "сообщение" msgstr "сообщение"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "уровень" msgstr "уровень"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "журнал" msgstr "журнал"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "логи" msgstr "логи"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "сохранённое представление" msgstr "сохранённое представление"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "сохраненные представления" msgstr "сохраненные представления"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "пользователь" msgstr "пользователь"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "показать на панели" msgstr "показать на панели"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "показать в боковой панели" msgstr "показать в боковой панели"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "Поле сортировки" msgstr "Поле сортировки"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "обратная сортировка" msgstr "обратная сортировка"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "заголовок содержит" msgstr "заголовок содержит"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "содержимое содержит" msgstr "содержимое содержит"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "АН" msgstr "АН"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "корреспондент" msgstr "корреспондент"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "тип документа" msgstr "тип документа"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "во входящих" msgstr "во входящих"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "есть тег" msgstr "есть тег"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "есть любой тег" msgstr "есть любой тег"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "создан до" msgstr "создан до"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "создан после" msgstr "создан после"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "год создания" msgstr "год создания"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "месяц создания" msgstr "месяц создания"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "день создания" msgstr "день создания"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "добавлен до" msgstr "добавлен до"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "добавлен после" msgstr "добавлен после"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "изменен до" msgstr "изменен до"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "изменен после" msgstr "изменен после"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "не имеет тега" msgstr "не имеет тега"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "не имеет архивного номера" msgstr "не имеет архивного номера"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "Название или содержимое включает" msgstr "Название или содержимое включает"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "полнотекстовый запрос" msgstr "полнотекстовый запрос"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "больше похожих" msgstr "больше похожих"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "имеет теги в" 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" msgid "rule type"
msgstr "Тип правила" msgstr "Тип правила"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "значение" msgstr "значение"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "Правило фильтрации" msgstr "Правило фильтрации"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "правила фильтрации" msgstr "правила фильтрации"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "запущено" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "неверное регулярное выражение: %(error)s" msgstr "неверное регулярное выражение: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Неверный цвет." msgstr "Неверный цвет."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Тип файла %(type)s не поддерживается" msgstr "Тип файла %(type)s не поддерживается"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Обнаружена неверная переменная." msgstr "Обнаружена неверная переменная."
@ -444,87 +556,87 @@ msgstr "Пароль"
msgid "Sign in" msgid "Sign in"
msgstr "Вход" msgstr "Вход"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Английский (США)" msgstr "Английский (США)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Белорусский" msgstr "Белорусский"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Чешский" msgstr "Чешский"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Датский" msgstr "Датский"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Немецкий" msgstr "Немецкий"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Английский (Великобритании)" msgstr "Английский (Великобритании)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Испанский" msgstr "Испанский"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Французский" msgstr "Французский"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Итальянский" msgstr "Итальянский"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Люксембургский" msgstr "Люксембургский"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Датский" msgstr "Датский"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Польский" msgstr "Польский"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Португальский (Бразилия)" msgstr "Португальский (Бразилия)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Португальский" msgstr "Португальский"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Румынский" msgstr "Румынский"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Русский" msgstr "Русский"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Словенский" msgstr "Словенский"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Сербский" msgstr "Сербский"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Шведский" msgstr "Шведский"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Турецкий" msgstr "Турецкий"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Китайский упрощенный" msgstr "Китайский упрощенный"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-25 12:46\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Slovenian\n" "Language-Team: Slovenian\n"
"Language: sl_SI\n" "Language: sl_SI\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Katerakoli beseda" msgstr "Katerakoli beseda"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Vse besede" msgstr "Vse besede"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Točno ujemanje" msgstr "Točno ujemanje"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regularni izraz" msgstr "Regularni izraz"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Fuzzy beseda" msgstr "Fuzzy beseda"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Samodejno" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "ime" msgstr "ime"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "ujemanje" msgstr "ujemanje"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritem ujemanja" msgstr "algoritem ujemanja"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "brez razlikovanje velikosti črk" msgstr "brez razlikovanje velikosti črk"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "dopisnik" msgstr "dopisnik"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "dopisniki" msgstr "dopisniki"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "barva" msgstr "barva"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "je vhodna oznaka" 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." 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." 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" msgid "tag"
msgstr "oznaka" msgstr "oznaka"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "oznake" msgstr "oznake"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "vrsta dokumenta" msgstr "vrsta dokumenta"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "vrste dokumentov" msgstr "vrste dokumentov"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "pot" msgstr "pot"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "pot do shrambe" msgstr "pot do shrambe"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "poti do shrambe" msgstr "poti do shrambe"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Nešifrirano" msgstr "Nešifrirano"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrirano z GNU Privacy Guard" msgstr "Šifrirano z GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "naslov" msgstr "naslov"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "vsebina" 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." 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." msgstr "Neobdelani besedilni podatki dokumenta. To polje se uporablja predvsem za iskanje."
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "vrsta mime" msgstr "vrsta mime"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrolna vsota" msgstr "kontrolna vsota"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrolna vsota izvirnega dokumenta." msgstr "Kontrolna vsota izvirnega dokumenta."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arhivska kontrolna vsota" msgstr "arhivska kontrolna vsota"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrolna vsota arhiviranega dokumenta." 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" msgid "created"
msgstr "ustvarjeno" msgstr "ustvarjeno"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "spremenjeno" msgstr "spremenjeno"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "vrsta shrambe" msgstr "vrsta shrambe"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "dodano" msgstr "dodano"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "ime datoteke" msgstr "ime datoteke"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Trenutno ime dokumenta v shrambi" msgstr "Trenutno ime dokumenta v shrambi"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "ime arhivske datoteke" msgstr "ime arhivske datoteke"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Trenutno ime arhivske datoteke v shrambi" 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" msgid "archive serial number"
msgstr "arhivska serijska številka" msgstr "arhivska serijska številka"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Položaj tega dokumenta v vašem fizičnem arhivu dokumentov." 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" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenti" msgstr "dokumenti"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "razhroščevanje" msgstr "razhroščevanje"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informacija" msgstr "informacija"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "opozorilo" msgstr "opozorilo"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "napaka" msgstr "napaka"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritično" msgstr "kritično"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "skupina" msgstr "skupina"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "sporočilo" msgstr "sporočilo"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivo" msgstr "nivo"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "dnevnik" msgstr "dnevnik"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "dnevniki" msgstr "dnevniki"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "shranjeni pogled" msgstr "shranjeni pogled"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "shranjeni pogledi" msgstr "shranjeni pogledi"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "uporabnik" msgstr "uporabnik"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "prikaži na pregledni plošči" msgstr "prikaži na pregledni plošči"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "prikaži v stranski vrstici" msgstr "prikaži v stranski vrstici"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "polje za razvrščanje" msgstr "polje za razvrščanje"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "razvrsti obratno" msgstr "razvrsti obratno"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "naslov vsebuje" msgstr "naslov vsebuje"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "vsebina vsebuje" msgstr "vsebina vsebuje"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN je" msgstr "ASN je"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "dopisnik je" msgstr "dopisnik je"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "vrsta dokumenta je" msgstr "vrsta dokumenta je"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "je v prejetem" msgstr "je v prejetem"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ima oznako" msgstr "ima oznako"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ima katero koli oznako" msgstr "ima katero koli oznako"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "ustvarjeno pred" msgstr "ustvarjeno pred"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "ustvarjeno po" msgstr "ustvarjeno po"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "leto nastanka" msgstr "leto nastanka"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "mesec nastanka" msgstr "mesec nastanka"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dan nastanka" msgstr "dan nastanka"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "dodano pred" msgstr "dodano pred"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "dodano po" msgstr "dodano po"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "spremenjeno pred" msgstr "spremenjeno pred"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "spremenjeno po" msgstr "spremenjeno po"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "nima oznake" msgstr "nima oznake"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "nima ASN" msgstr "nima ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "naslov ali vsebina vsebujeta" msgstr "naslov ali vsebina vsebujeta"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "polnobesedilna poizvedba" msgstr "polnobesedilna poizvedba"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "več takih" msgstr "več takih"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "ima oznake" 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" msgid "rule type"
msgstr "vrsta pravila" msgstr "vrsta pravila"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "vrednost" msgstr "vrednost"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtriraj pravilo" msgstr "filtriraj pravilo"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtriraj pravila" msgstr "filtriraj pravila"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "zagnano" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Neveljaven splošen izraz: %(error)s" msgstr "Neveljaven splošen izraz: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Napačna barva." msgstr "Napačna barva."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s ni podprta" msgstr "Vrsta datoteke %(type)s ni podprta"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Zaznani neveljavni znaki." msgstr "Zaznani neveljavni znaki."
@ -444,87 +556,87 @@ msgstr "Geslo"
msgid "Sign in" msgid "Sign in"
msgstr "Prijava" msgstr "Prijava"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Angleščina (ZDA)" msgstr "Angleščina (ZDA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Beloruščina" msgstr "Beloruščina"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Češčina" msgstr "Češčina"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danščina" msgstr "Danščina"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Nemščina" msgstr "Nemščina"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Angleščina (GB)" msgstr "Angleščina (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Španščina" msgstr "Španščina"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francoščina" msgstr "Francoščina"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italijanščina" msgstr "Italijanščina"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luksemburški" msgstr "Luksemburški"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Nizozemščina" msgstr "Nizozemščina"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Poljščina" msgstr "Poljščina"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugalščina (Brazilija)" msgstr "Portugalščina (Brazilija)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugalščina" msgstr "Portugalščina"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Romunščina" msgstr "Romunščina"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ruščina" msgstr "Ruščina"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovenščina" msgstr "Slovenščina"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Srbščina" msgstr "Srbščina"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Švedščina" msgstr "Švedščina"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turščina" msgstr "Turščina"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Poenostavljena kitajščina" msgstr "Poenostavljena kitajščina"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-04 23:55\n" "PO-Revision-Date: 2022-11-12 13:08\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Serbian (Latin)\n" "Language-Team: Serbian (Latin)\n"
"Language: sr_CS\n" "Language: sr_CS\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokumenta" msgstr "Dokumenta"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Bilo koja reč" msgstr "Bilo koja reč"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Sve reči" msgstr "Sve reči"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Tačno podudaranje" msgstr "Tačno podudaranje"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Regularni izraz" msgstr "Regularni izraz"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Fuzzy reč" msgstr "Fuzzy reč"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatski" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "naziv" msgstr "naziv"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "poklapanje" msgstr "poklapanje"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "algoritam podudaranja" msgstr "algoritam podudaranja"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "bez razlike veliko/malo slovo" msgstr "bez razlike veliko/malo slovo"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "korespodent" msgstr "korespodent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korespodenti" msgstr "korespodenti"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "boja" msgstr "boja"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "je oznaka prijemnog sandučeta" 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." 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)." 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" msgid "tag"
msgstr "oznaka" msgstr "oznaka"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "oznake" msgstr "oznake"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "tip dokumenta" msgstr "tip dokumenta"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "tipovi dokumenta" msgstr "tipovi dokumenta"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "putanja" msgstr "putanja"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "putanja skladišta" msgstr "putanja skladišta"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "putanja skladišta" msgstr "putanja skladišta"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Nešifrovano" msgstr "Nešifrovano"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Šifrovano pomoću GNU Privacy Guard" msgstr "Šifrovano pomoću GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "naslov" msgstr "naslov"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "sadržaj" 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." 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." 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" msgid "mime type"
msgstr "mime tip" msgstr "mime tip"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrolna suma" msgstr "kontrolna suma"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrolna suma originalnog dokumenta." msgstr "Kontrolna suma originalnog dokumenta."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arhivni checksum" msgstr "arhivni checksum"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrolna suma arhivnog dokumenta." 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" msgid "created"
msgstr "kreirano" msgstr "kreirano"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "izmenjeno" msgstr "izmenjeno"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "tip skladišta" msgstr "tip skladišta"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "dodato" msgstr "dodato"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "naziv fajla" msgstr "naziv fajla"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Trenutni naziv sačuvane datoteke" msgstr "Trenutni naziv sačuvane datoteke"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "naziv fajla arhive" msgstr "naziv fajla arhive"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Trenutni naziv arhivirane sačuvane datoteke" 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" msgid "archive serial number"
msgstr "arhivski serijski broj" msgstr "arhivski serijski broj"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata." 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" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokumenta" msgstr "dokumenta"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "okloni greške" msgstr "okloni greške"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "informacija" msgstr "informacija"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "upozorenje" msgstr "upozorenje"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "grеška" msgstr "grеška"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritično" msgstr "kritično"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupa" msgstr "grupa"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "poruka" msgstr "poruka"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivo" msgstr "nivo"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "log" msgstr "log"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "logovi" msgstr "logovi"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "sačuvani prikaz" msgstr "sačuvani prikaz"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "sačuvani prikazi" msgstr "sačuvani prikazi"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "korisnik" msgstr "korisnik"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "prikaži na kontrolnoj tabli" msgstr "prikaži na kontrolnoj tabli"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "prikaži u bočnoj traci" msgstr "prikaži u bočnoj traci"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "polje za sortiranje" msgstr "polje za sortiranje"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "obrnuto sortiranje" msgstr "obrnuto sortiranje"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "naslov sadrži" msgstr "naslov sadrži"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "sadržaj sadrži" msgstr "sadržaj sadrži"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN je" msgstr "ASN je"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "korespodent je" msgstr "korespodent je"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "tip dokumenta je" msgstr "tip dokumenta je"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "je u prijemnog sandučetu" msgstr "je u prijemnog sandučetu"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "ima oznaku" msgstr "ima oznaku"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "ima bilo koju oznaku" msgstr "ima bilo koju oznaku"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "kreiran pre" msgstr "kreiran pre"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "kreiran posle" msgstr "kreiran posle"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "godina kreiranja je" msgstr "godina kreiranja je"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "mesec kreiranja je" msgstr "mesec kreiranja je"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "dan kreiranja je" msgstr "dan kreiranja je"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "dodat pre" msgstr "dodat pre"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "dodat posle" msgstr "dodat posle"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "izmenjen pre" msgstr "izmenjen pre"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "izmenjen posle" msgstr "izmenjen posle"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "nema oznaku" msgstr "nema oznaku"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "nema ASN" msgstr "nema ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "naslov i sadržaj sadrži" msgstr "naslov i sadržaj sadrži"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "upit za ceo tekst" msgstr "upit za ceo tekst"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "više ovakvih" msgstr "više ovakvih"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "ima oznake u" 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" msgid "rule type"
msgstr "tip pravila" msgstr "tip pravila"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "vrednost" msgstr "vrednost"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filter pravilo" msgstr "filter pravilo"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filter pravila" msgstr "filter pravila"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "pokrenuto" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Nevažeći regularni izraz: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Nevažeća boja." msgstr "Nevažeća boja."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Vrsta datoteke %(type)s nije podržana" msgstr "Vrsta datoteke %(type)s nije podržana"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Otkrivena je nevažeća promenljiva." msgstr "Otkrivena je nevažeća promenljiva."
@ -444,87 +556,87 @@ msgstr "Lozinka"
msgid "Sign in" msgid "Sign in"
msgstr "Prijavite se" msgstr "Prijavite se"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engleski (US)" msgstr "Engleski (US)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Beloruski" msgstr "Beloruski"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Češki" msgstr "Češki"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danski" msgstr "Danski"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Nemački" msgstr "Nemački"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engleski (UK)" msgstr "Engleski (UK)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Španski" msgstr "Španski"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Francuski" msgstr "Francuski"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italijanski" msgstr "Italijanski"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Luksemburški" msgstr "Luksemburški"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Holandski" msgstr "Holandski"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Poljski" msgstr "Poljski"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugalski (Brazil)" msgstr "Portugalski (Brazil)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugalski" msgstr "Portugalski"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumunski" msgstr "Rumunski"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ruski" msgstr "Ruski"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovenački" msgstr "Slovenački"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Srpski" msgstr "Srpski"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Švedski" msgstr "Švedski"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Turski" msgstr "Turski"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Kineski pojednostavljen" msgstr "Kineski pojednostavljen"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-08 22:07\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Language: sv_SE\n" "Language: sv_SE\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Dokument" msgstr "Dokument"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Valfritt ord" msgstr "Valfritt ord"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Alla ord" msgstr "Alla ord"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Exakt matchning" msgstr "Exakt matchning"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Reguljära uttryck" msgstr "Reguljära uttryck"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Ungefärligt ord" msgstr "Ungefärligt ord"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Automatisk" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "namn" msgstr "namn"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "träff" msgstr "träff"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "matchande algoritm" msgstr "matchande algoritm"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "är ej skiftlägeskänsligt" msgstr "är ej skiftlägeskänsligt"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "korrespondent" msgstr "korrespondent"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "korrespondenter" msgstr "korrespondenter"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "färg" msgstr "färg"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "är inkorgsetikett" 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." 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." 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" msgid "tag"
msgstr "etikett" msgstr "etikett"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiketter" msgstr "etiketter"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "dokumenttyp" msgstr "dokumenttyp"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "dokumenttyper" msgstr "dokumenttyper"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Okrypterad" msgstr "Okrypterad"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "Krypterad med GNU Privacy Guard" msgstr "Krypterad med GNU Privacy Guard"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "titel" msgstr "titel"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "innehåll" 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." 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." 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" msgid "mime type"
msgstr "MIME-typ" msgstr "MIME-typ"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "kontrollsumma" msgstr "kontrollsumma"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Kontrollsumman för originaldokumentet." msgstr "Kontrollsumman för originaldokumentet."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arkivera kontrollsumma" msgstr "arkivera kontrollsumma"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Kontrollsumman för det arkiverade dokumentet." 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" msgid "created"
msgstr "skapad" msgstr "skapad"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "ändrad" msgstr "ändrad"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "lagringstyp" msgstr "lagringstyp"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "tillagd" msgstr "tillagd"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "filnamn" msgstr "filnamn"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Nuvarande filnamn i lagringsutrymmet" msgstr "Nuvarande filnamn i lagringsutrymmet"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "arkivfilnamn" msgstr "arkivfilnamn"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Nuvarande arkivfilnamn i lagringsutrymmet" 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" msgid "archive serial number"
msgstr "serienummer (arkivering)" msgstr "serienummer (arkivering)"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Placeringen av detta dokument i ditt fysiska dokumentarkiv." msgstr "Placeringen av detta dokument i ditt fysiska dokumentarkiv."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "dokument" msgstr "dokument"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "felsök" msgstr "felsök"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "" msgstr ""
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "varning" msgstr "varning"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "fel" msgstr "fel"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritisk" msgstr "kritisk"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grupp" msgstr "grupp"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "meddelande" msgstr "meddelande"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "nivå" msgstr "nivå"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "logg" msgstr "logg"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "loggar" msgstr "loggar"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "sparad vy" msgstr "sparad vy"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "sparade vyer" msgstr "sparade vyer"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "användare" msgstr "användare"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "visa på kontrollpanelen" msgstr "visa på kontrollpanelen"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "visa i sidofältet" msgstr "visa i sidofältet"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "sortera fält" msgstr "sortera fält"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "sortera omvänt" msgstr "sortera omvänt"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "titel innehåller" msgstr "titel innehåller"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "innehåll innehåller" msgstr "innehåll innehåller"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN är" msgstr "ASN är"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "korrespondent är" msgstr "korrespondent är"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "dokumenttyp är" msgstr "dokumenttyp är"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "är i inkorgen" msgstr "är i inkorgen"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "har etikett" msgstr "har etikett"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "har någon etikett" msgstr "har någon etikett"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "skapad före" msgstr "skapad före"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "skapad efter" msgstr "skapad efter"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "skapat år är" msgstr "skapat år är"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "skapad månad är" msgstr "skapad månad är"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "skapad dag är" msgstr "skapad dag är"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "tillagd före" msgstr "tillagd före"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "tillagd efter" msgstr "tillagd efter"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "ändrad före" msgstr "ändrad före"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "ändrad efter" msgstr "ändrad efter"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "har inte etikett" msgstr "har inte etikett"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "har inte ASN" msgstr "har inte ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "titel eller innehåll innehåller" msgstr "titel eller innehåll innehåller"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "fulltextfråga" msgstr "fulltextfråga"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "mer som detta" msgstr "mer som detta"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "" 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" msgid "rule type"
msgstr "regeltyp" msgstr "regeltyp"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "värde" msgstr "värde"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtrera regel" msgstr "filtrera regel"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtrera regler" msgstr "filtrera regler"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Ogiltigt reguljärt uttryck: %(error)s" msgstr "Ogiltigt reguljärt uttryck: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Ogiltig färg." msgstr "Ogiltig färg."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Filtypen %(type)s stöds inte" msgstr "Filtypen %(type)s stöds inte"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "" msgstr ""
@ -444,87 +556,87 @@ msgstr "Lösenord"
msgid "Sign in" msgid "Sign in"
msgstr "Logga in" msgstr "Logga in"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "Engelska (USA)" msgstr "Engelska (USA)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "" msgstr ""
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "" msgstr ""
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "" msgstr ""
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Tyska" msgstr "Tyska"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "Engelska (GB)" msgstr "Engelska (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "Spanska" msgstr "Spanska"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Franska" msgstr "Franska"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "Italienska" msgstr "Italienska"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "" msgstr ""
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Holländska" msgstr "Holländska"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polska" msgstr "Polska"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portugisiska (Brasilien)" msgstr "Portugisiska (Brasilien)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portugisiska" msgstr "Portugisiska"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Rumänska" msgstr "Rumänska"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Ryska" msgstr "Ryska"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "" msgstr ""
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr ""
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "Svenska" msgstr "Svenska"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "" msgstr ""
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "" msgstr ""

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-08-01 19:02\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Language: tr_TR\n" "Language: tr_TR\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "Belgeler" msgstr "Belgeler"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "Herhangi bir kelime" msgstr "Herhangi bir kelime"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "Tüm Kelimeler" msgstr "Tüm Kelimeler"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "Tam eşleşme" msgstr "Tam eşleşme"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "Düzenli ifade" msgstr "Düzenli ifade"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "Fuzzy Kelime" msgstr "Fuzzy Kelime"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "Otomatik" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "ad" msgstr "ad"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "eşleme" msgstr "eşleme"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "eşleştirme algoritması" msgstr "eşleştirme algoritması"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "duyarsızdır" msgstr "duyarsızdır"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "muhabir" msgstr "muhabir"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "muhabirler" msgstr "muhabirler"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "renk" msgstr "renk"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "gelen kutu etiketidir" 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." 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." 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" msgid "tag"
msgstr "etiket" msgstr "etiket"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "etiketler" msgstr "etiketler"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "belge türü" msgstr "belge türü"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "belge türleri" msgstr "belge türleri"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "" msgstr ""
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "" msgstr ""
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "" msgstr ""
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "Şifresiz" msgstr "Şifresiz"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "GNU Gizlilik Koruması ile şifrelendirilmiştir" msgstr "GNU Gizlilik Koruması ile şifrelendirilmiştir"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "başlık" msgstr "başlık"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "içerik" 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." 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." 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" msgid "mime type"
msgstr "mime türü" msgstr "mime türü"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "sağlama toplamı" msgstr "sağlama toplamı"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "Orjinal belgenin sağlama toplamı." msgstr "Orjinal belgenin sağlama toplamı."
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "arşiv sağlama toplamı" msgstr "arşiv sağlama toplamı"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "Arşivlenen belgenin sağlama toplamı." 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" msgid "created"
msgstr "oluşturuldu" msgstr "oluşturuldu"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "değiştirilmiş" msgstr "değiştirilmiş"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "depolama türü" msgstr "depolama türü"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "eklendi" msgstr "eklendi"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "dosya adı" msgstr "dosya adı"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "Depolamadaki geçerli dosya adı" msgstr "Depolamadaki geçerli dosya adı"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "arşiv dosya adı" msgstr "arşiv dosya adı"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "Depolamadaki geçerli arşiv dosya adı" 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" msgid "archive serial number"
msgstr "arşiv seri numarası" msgstr "arşiv seri numarası"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "Bu belgenin fiziksel belge arşivinizdeki posizyonu." msgstr "Bu belgenin fiziksel belge arşivinizdeki posizyonu."
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "belge" msgstr "belge"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "belgeler" msgstr "belgeler"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "hata ayıklama" msgstr "hata ayıklama"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "bilgi" msgstr "bilgi"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "uyarı" msgstr "uyarı"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "hata" msgstr "hata"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "kritik" msgstr "kritik"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "grup" msgstr "grup"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "mesaj" msgstr "mesaj"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "seviye" msgstr "seviye"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "günlük" msgstr "günlük"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "günlükler" msgstr "günlükler"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "kaydedilen görünüm" msgstr "kaydedilen görünüm"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "kaydedilen görünümler" msgstr "kaydedilen görünümler"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "kullanıcı" msgstr "kullanıcı"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "kontrol paneli'nde göster" msgstr "kontrol paneli'nde göster"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "kenar çubuğunda göster" msgstr "kenar çubuğunda göster"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "alanı sıralama" msgstr "alanı sıralama"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "tersine sırala" msgstr "tersine sırala"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "başlık içerir" msgstr "başlık içerir"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "içerik içerir" msgstr "içerik içerir"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN ise" msgstr "ASN ise"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "muhabir ise" msgstr "muhabir ise"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "belge türü ise" msgstr "belge türü ise"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "gelen kutusunun içerisindedir" msgstr "gelen kutusunun içerisindedir"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "etiketine sahip" msgstr "etiketine sahip"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "herhangi bir etiketine sahip" msgstr "herhangi bir etiketine sahip"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "bu tarihten önce oluşturuldu" msgstr "bu tarihten önce oluşturuldu"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "bu tarihten sonra oluşturuldu" msgstr "bu tarihten sonra oluşturuldu"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "oluşturma yili ise" msgstr "oluşturma yili ise"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "oluşturma ayı ise" msgstr "oluşturma ayı ise"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "oluşturma günü ise" msgstr "oluşturma günü ise"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "bu tarihten önce eklendi" msgstr "bu tarihten önce eklendi"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "bu tarihten sonra eklendi" msgstr "bu tarihten sonra eklendi"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "bu tarihten önce değiştirldi" msgstr "bu tarihten önce değiştirldi"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "bu tarihten sonra değiştirldi" msgstr "bu tarihten sonra değiştirldi"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "etikete sahip değil" msgstr "etikete sahip değil"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "ASN'e sahip değil" msgstr "ASN'e sahip değil"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "başlik veya içerik içerir" msgstr "başlik veya içerik içerir"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "tam metin sorgulama" msgstr "tam metin sorgulama"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "buna benzer daha" msgstr "buna benzer daha"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "içerisinde etiketine sahip" 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" msgid "rule type"
msgstr "kural türü" msgstr "kural türü"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "değer" msgstr "değer"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "filtreleme kuralı" msgstr "filtreleme kuralı"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "filtreleme kuralları" msgstr "filtreleme kuralları"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "başladı" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "Hatalı Düzenli İfade: %(error)s" msgstr "Hatalı Düzenli İfade: %(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "Geçersiz renk." msgstr "Geçersiz renk."
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "Dosya türü %(type)s desteklenmiyor" msgstr "Dosya türü %(type)s desteklenmiyor"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "Geçersiz değişken algılandı." msgstr "Geçersiz değişken algılandı."
@ -444,87 +556,87 @@ msgstr "Parola"
msgid "Sign in" msgid "Sign in"
msgstr "Oturum aç" msgstr "Oturum aç"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "İngilizce (Birleşik Devletler)" msgstr "İngilizce (Birleşik Devletler)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "Belarusça" msgstr "Belarusça"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "Çekçe" msgstr "Çekçe"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "Danca" msgstr "Danca"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "Almanca" msgstr "Almanca"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "İngilizce (GB)" msgstr "İngilizce (GB)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "İspanyolca" msgstr "İspanyolca"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "Fransızca" msgstr "Fransızca"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "İtalyanca" msgstr "İtalyanca"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "Lüksemburgca" msgstr "Lüksemburgca"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "Hollandaca" msgstr "Hollandaca"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "Polonyaca" msgstr "Polonyaca"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "Portekizce (Brezilya)" msgstr "Portekizce (Brezilya)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "Portekizce" msgstr "Portekizce"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "Romence" msgstr "Romence"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "Rusça" msgstr "Rusça"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "Slovakça" msgstr "Slovakça"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "Sırpça" msgstr "Sırpça"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "İsveççe" msgstr "İsveççe"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "Türkçe" msgstr "Türkçe"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "Basitleştirilmiş Çince" msgstr "Basitleştirilmiş Çince"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: paperless-ngx\n" "Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-08 14:11-0700\n" "POT-Creation-Date: 2022-11-09 21:50+0000\n"
"PO-Revision-Date: 2022-07-15 04:02\n" "PO-Revision-Date: 2022-11-09 23:11\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Language: zh_CN\n" "Language: zh_CN\n"
@ -21,378 +21,490 @@ msgstr ""
msgid "Documents" msgid "Documents"
msgstr "文档" msgstr "文档"
#: documents/models.py:29 #: documents/models.py:32
msgid "Any word" msgid "Any word"
msgstr "任意单词" msgstr "任意单词"
#: documents/models.py:30 #: documents/models.py:33
msgid "All words" msgid "All words"
msgstr "所有单词" msgstr "所有单词"
#: documents/models.py:31 #: documents/models.py:34
msgid "Exact match" msgid "Exact match"
msgstr "精确匹配" msgstr "精确匹配"
#: documents/models.py:32 #: documents/models.py:35
msgid "Regular expression" msgid "Regular expression"
msgstr "正则表达式" msgstr "正则表达式"
#: documents/models.py:33 #: documents/models.py:36
msgid "Fuzzy word" msgid "Fuzzy word"
msgstr "模糊单词" msgstr "模糊单词"
#: documents/models.py:34 #: documents/models.py:37
msgid "Automatic" msgid "Automatic"
msgstr "自动" 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 #: paperless_mail/models.py:80
msgid "name" msgid "name"
msgstr "名称" msgstr "名称"
#: documents/models.py:39 #: documents/models.py:42
msgid "match" msgid "match"
msgstr "匹配" msgstr "匹配"
#: documents/models.py:42 #: documents/models.py:45
msgid "matching algorithm" msgid "matching algorithm"
msgstr "匹配算法" msgstr "匹配算法"
#: documents/models.py:47 #: documents/models.py:50
msgid "is insensitive" msgid "is insensitive"
msgstr "忽略大小写" msgstr "忽略大小写"
#: documents/models.py:60 documents/models.py:115 #: documents/models.py:63 documents/models.py:118
msgid "correspondent" msgid "correspondent"
msgstr "联系人" msgstr "联系人"
#: documents/models.py:61 #: documents/models.py:64
msgid "correspondents" msgid "correspondents"
msgstr "联系人" msgstr "联系人"
#: documents/models.py:66 #: documents/models.py:69
msgid "color" msgid "color"
msgstr "颜色" msgstr "颜色"
#: documents/models.py:69 #: documents/models.py:72
msgid "is inbox tag" msgid "is inbox tag"
msgstr "收件箱标签" 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." msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
msgstr "将此标签标记为收件箱标签:所有新处理的文档将被标记为收件箱标签。" msgstr "将此标签标记为收件箱标签:所有新处理的文档将被标记为收件箱标签。"
#: documents/models.py:78 #: documents/models.py:81
msgid "tag" msgid "tag"
msgstr "标签" msgstr "标签"
#: documents/models.py:79 documents/models.py:153 #: documents/models.py:82 documents/models.py:156
msgid "tags" msgid "tags"
msgstr "标签" msgstr "标签"
#: documents/models.py:84 documents/models.py:135 #: documents/models.py:87 documents/models.py:138
msgid "document type" msgid "document type"
msgstr "文档类型" msgstr "文档类型"
#: documents/models.py:85 #: documents/models.py:88
msgid "document types" msgid "document types"
msgstr "文档类型" msgstr "文档类型"
#: documents/models.py:90 #: documents/models.py:93
msgid "path" msgid "path"
msgstr "路径" msgstr "路径"
#: documents/models.py:96 documents/models.py:124 #: documents/models.py:99 documents/models.py:127
msgid "storage path" msgid "storage path"
msgstr "保存路径" msgstr "保存路径"
#: documents/models.py:97 #: documents/models.py:100
msgid "storage paths" msgid "storage paths"
msgstr "保存路径" msgstr "保存路径"
#: documents/models.py:105 #: documents/models.py:108
msgid "Unencrypted" msgid "Unencrypted"
msgstr "未加密" msgstr "未加密"
#: documents/models.py:106 #: documents/models.py:109
msgid "Encrypted with GNU Privacy Guard" msgid "Encrypted with GNU Privacy Guard"
msgstr "使用 GNU 隐私防护GPG加密" msgstr "使用 GNU 隐私防护GPG加密"
#: documents/models.py:127 #: documents/models.py:130
msgid "title" msgid "title"
msgstr "标题" msgstr "标题"
#: documents/models.py:139 #: documents/models.py:142 documents/models.py:611
msgid "content" msgid "content"
msgstr "内容" 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." msgid "The raw, text-only data of the document. This field is primarily used for searching."
msgstr "文档的原始、纯文本的数据。这个字段主要用于搜索。" msgstr "文档的原始、纯文本的数据。这个字段主要用于搜索。"
#: documents/models.py:147 #: documents/models.py:150
msgid "mime type" msgid "mime type"
msgstr "mime 类型" msgstr "mime 类型"
#: documents/models.py:157 #: documents/models.py:160
msgid "checksum" msgid "checksum"
msgstr "校验和" msgstr "校验和"
#: documents/models.py:161 #: documents/models.py:164
msgid "The checksum of the original document." msgid "The checksum of the original document."
msgstr "原始文档的校验和。" msgstr "原始文档的校验和。"
#: documents/models.py:165 #: documents/models.py:168
msgid "archive checksum" msgid "archive checksum"
msgstr "存档校验和" msgstr "存档校验和"
#: documents/models.py:170 #: documents/models.py:173
msgid "The checksum of the archived document." msgid "The checksum of the archived document."
msgstr "已归档文档的校验和。" 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" msgid "created"
msgstr "已创建" msgstr "已创建"
#: documents/models.py:176 #: documents/models.py:179
msgid "modified" msgid "modified"
msgstr "已修改" msgstr "已修改"
#: documents/models.py:183 #: documents/models.py:186
msgid "storage type" msgid "storage type"
msgstr "存储类型" msgstr "存储类型"
#: documents/models.py:191 #: documents/models.py:194
msgid "added" msgid "added"
msgstr "已添加" msgstr "已添加"
#: documents/models.py:198 #: documents/models.py:201
msgid "filename" msgid "filename"
msgstr "文件名" msgstr "文件名"
#: documents/models.py:204 #: documents/models.py:207
msgid "Current filename in storage" msgid "Current filename in storage"
msgstr "当前存储中的文件名" msgstr "当前存储中的文件名"
#: documents/models.py:208 #: documents/models.py:211
msgid "archive filename" msgid "archive filename"
msgstr "归档文件名" msgstr "归档文件名"
#: documents/models.py:214 #: documents/models.py:217
msgid "Current archive filename in storage" msgid "Current archive filename in storage"
msgstr "当前存储中的归档文件名" 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" msgid "archive serial number"
msgstr "归档序列号" msgstr "归档序列号"
#: documents/models.py:224 #: documents/models.py:237
msgid "The position of this document in your physical document archive." msgid "The position of this document in your physical document archive."
msgstr "此文档在您的物理文档归档中的位置。" msgstr "此文档在您的物理文档归档中的位置。"
#: documents/models.py:230 #: documents/models.py:243 documents/models.py:628
msgid "document" msgid "document"
msgstr "文档" msgstr "文档"
#: documents/models.py:231 #: documents/models.py:244
msgid "documents" msgid "documents"
msgstr "文档" msgstr "文档"
#: documents/models.py:318 #: documents/models.py:331
msgid "debug" msgid "debug"
msgstr "调试" msgstr "调试"
#: documents/models.py:319 #: documents/models.py:332
msgid "information" msgid "information"
msgstr "信息" msgstr "信息"
#: documents/models.py:320 #: documents/models.py:333
msgid "warning" msgid "warning"
msgstr "警告" msgstr "警告"
#: documents/models.py:321 #: documents/models.py:334
msgid "error" msgid "error"
msgstr "错误" msgstr "错误"
#: documents/models.py:322 #: documents/models.py:335
msgid "critical" msgid "critical"
msgstr "严重" msgstr "严重"
#: documents/models.py:325 #: documents/models.py:338
msgid "group" msgid "group"
msgstr "用户组" msgstr "用户组"
#: documents/models.py:327 #: documents/models.py:340
msgid "message" msgid "message"
msgstr "消息" msgstr "消息"
#: documents/models.py:330 #: documents/models.py:343
msgid "level" msgid "level"
msgstr "等级" msgstr "等级"
#: documents/models.py:339 #: documents/models.py:352
msgid "log" msgid "log"
msgstr "日志" msgstr "日志"
#: documents/models.py:340 #: documents/models.py:353
msgid "logs" msgid "logs"
msgstr "日志" msgstr "日志"
#: documents/models.py:350 documents/models.py:403 #: documents/models.py:363 documents/models.py:419
msgid "saved view" msgid "saved view"
msgstr "保存的视图" msgstr "保存的视图"
#: documents/models.py:351 #: documents/models.py:364
msgid "saved views" msgid "saved views"
msgstr "保存的视图" msgstr "保存的视图"
#: documents/models.py:353 #: documents/models.py:366 documents/models.py:637
msgid "user" msgid "user"
msgstr "用户" msgstr "用户"
#: documents/models.py:357 #: documents/models.py:370
msgid "show on dashboard" msgid "show on dashboard"
msgstr "在仪表盘显示" msgstr "在仪表盘显示"
#: documents/models.py:360 #: documents/models.py:373
msgid "show in sidebar" msgid "show in sidebar"
msgstr "在侧边栏显示" msgstr "在侧边栏显示"
#: documents/models.py:364 #: documents/models.py:377
msgid "sort field" msgid "sort field"
msgstr "排序字段" msgstr "排序字段"
#: documents/models.py:369 #: documents/models.py:382
msgid "sort reverse" msgid "sort reverse"
msgstr "反向排序" msgstr "反向排序"
#: documents/models.py:374 #: documents/models.py:387
msgid "title contains" msgid "title contains"
msgstr "标题包含" msgstr "标题包含"
#: documents/models.py:375 #: documents/models.py:388
msgid "content contains" msgid "content contains"
msgstr "内容包含" msgstr "内容包含"
#: documents/models.py:376 #: documents/models.py:389
msgid "ASN is" msgid "ASN is"
msgstr "ASN 为" msgstr "ASN 为"
#: documents/models.py:377 #: documents/models.py:390
msgid "correspondent is" msgid "correspondent is"
msgstr "联系人是" msgstr "联系人是"
#: documents/models.py:378 #: documents/models.py:391
msgid "document type is" msgid "document type is"
msgstr "文档类型是" msgstr "文档类型是"
#: documents/models.py:379 #: documents/models.py:392
msgid "is in inbox" msgid "is in inbox"
msgstr "在收件箱中" msgstr "在收件箱中"
#: documents/models.py:380 #: documents/models.py:393
msgid "has tag" msgid "has tag"
msgstr "有标签" msgstr "有标签"
#: documents/models.py:381 #: documents/models.py:394
msgid "has any tag" msgid "has any tag"
msgstr "有任意标签" msgstr "有任意标签"
#: documents/models.py:382 #: documents/models.py:395
msgid "created before" msgid "created before"
msgstr "在此时间之前创建" msgstr "在此时间之前创建"
#: documents/models.py:383 #: documents/models.py:396
msgid "created after" msgid "created after"
msgstr "在此时间之后创建" msgstr "在此时间之后创建"
#: documents/models.py:384 #: documents/models.py:397
msgid "created year is" msgid "created year is"
msgstr "创建年份是" msgstr "创建年份是"
#: documents/models.py:385 #: documents/models.py:398
msgid "created month is" msgid "created month is"
msgstr "创建月份是" msgstr "创建月份是"
#: documents/models.py:386 #: documents/models.py:399
msgid "created day is" msgid "created day is"
msgstr "创建日期是" msgstr "创建日期是"
#: documents/models.py:387 #: documents/models.py:400
msgid "added before" msgid "added before"
msgstr "添加早于" msgstr "添加早于"
#: documents/models.py:388 #: documents/models.py:401
msgid "added after" msgid "added after"
msgstr "添加晚于" msgstr "添加晚于"
#: documents/models.py:389 #: documents/models.py:402
msgid "modified before" msgid "modified before"
msgstr "修改早于" msgstr "修改早于"
#: documents/models.py:390 #: documents/models.py:403
msgid "modified after" msgid "modified after"
msgstr "修改晚于" msgstr "修改晚于"
#: documents/models.py:391 #: documents/models.py:404
msgid "does not have tag" msgid "does not have tag"
msgstr "没有标签" msgstr "没有标签"
#: documents/models.py:392 #: documents/models.py:405
msgid "does not have ASN" msgid "does not have ASN"
msgstr "没有 ASN" msgstr "没有 ASN"
#: documents/models.py:393 #: documents/models.py:406
msgid "title or content contains" msgid "title or content contains"
msgstr "标题或内容包含" msgstr "标题或内容包含"
#: documents/models.py:394 #: documents/models.py:407
msgid "fulltext query" msgid "fulltext query"
msgstr "全文检索" msgstr "全文检索"
#: documents/models.py:395 #: documents/models.py:408
msgid "more like this" msgid "more like this"
msgstr "更多类似内容" msgstr "更多类似内容"
#: documents/models.py:396 #: documents/models.py:409
msgid "has tags in" msgid "has tags in"
msgstr "有标签包含于" 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" msgid "rule type"
msgstr "规则类型" msgstr "规则类型"
#: documents/models.py:408 #: documents/models.py:424
msgid "value" msgid "value"
msgstr "值" msgstr "值"
#: documents/models.py:411 #: documents/models.py:427
msgid "filter rule" msgid "filter rule"
msgstr "过滤规则" msgstr "过滤规则"
#: documents/models.py:412 #: documents/models.py:428
msgid "filter rules" msgid "filter rules"
msgstr "过滤规则" msgstr "过滤规则"
#: documents/models.py:521 #: documents/models.py:536
msgid "started" msgid "Task ID"
msgstr "已开始" 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 #, python-format
msgid "Invalid regular expression: %(error)s" msgid "Invalid regular expression: %(error)s"
msgstr "无效的正则表达式:%(error)s" msgstr "无效的正则表达式:%(error)s"
#: documents/serialisers.py:191 #: documents/serialisers.py:193
msgid "Invalid color." msgid "Invalid color."
msgstr "无效的颜色" msgstr "无效的颜色"
#: documents/serialisers.py:515 #: documents/serialisers.py:518
#, python-format #, python-format
msgid "File type %(type)s not supported" msgid "File type %(type)s not supported"
msgstr "不支持文件类型 %(type)s" msgstr "不支持文件类型 %(type)s"
#: documents/serialisers.py:596 #: documents/serialisers.py:599
msgid "Invalid variable detected." msgid "Invalid variable detected."
msgstr "检测到无效变量。" msgstr "检测到无效变量。"
@ -444,87 +556,87 @@ msgstr "密码"
msgid "Sign in" msgid "Sign in"
msgstr "登录" msgstr "登录"
#: paperless/settings.py:339 #: paperless/settings.py:378
msgid "English (US)" msgid "English (US)"
msgstr "英语(美国)" msgstr "英语(美国)"
#: paperless/settings.py:340 #: paperless/settings.py:379
msgid "Belarusian" msgid "Belarusian"
msgstr "白俄罗斯语" msgstr "白俄罗斯语"
#: paperless/settings.py:341 #: paperless/settings.py:380
msgid "Czech" msgid "Czech"
msgstr "捷克语" msgstr "捷克语"
#: paperless/settings.py:342 #: paperless/settings.py:381
msgid "Danish" msgid "Danish"
msgstr "丹麦语" msgstr "丹麦语"
#: paperless/settings.py:343 #: paperless/settings.py:382
msgid "German" msgid "German"
msgstr "德语" msgstr "德语"
#: paperless/settings.py:344 #: paperless/settings.py:383
msgid "English (GB)" msgid "English (GB)"
msgstr "英语(英国)" msgstr "英语(英国)"
#: paperless/settings.py:345 #: paperless/settings.py:384
msgid "Spanish" msgid "Spanish"
msgstr "西班牙语" msgstr "西班牙语"
#: paperless/settings.py:346 #: paperless/settings.py:385
msgid "French" msgid "French"
msgstr "法语" msgstr "法语"
#: paperless/settings.py:347 #: paperless/settings.py:386
msgid "Italian" msgid "Italian"
msgstr "意大利语" msgstr "意大利语"
#: paperless/settings.py:348 #: paperless/settings.py:387
msgid "Luxembourgish" msgid "Luxembourgish"
msgstr "卢森堡语" msgstr "卢森堡语"
#: paperless/settings.py:349 #: paperless/settings.py:388
msgid "Dutch" msgid "Dutch"
msgstr "荷兰语" msgstr "荷兰语"
#: paperless/settings.py:350 #: paperless/settings.py:389
msgid "Polish" msgid "Polish"
msgstr "波兰语" msgstr "波兰语"
#: paperless/settings.py:351 #: paperless/settings.py:390
msgid "Portuguese (Brazil)" msgid "Portuguese (Brazil)"
msgstr "葡萄牙语 (巴西)" msgstr "葡萄牙语 (巴西)"
#: paperless/settings.py:352 #: paperless/settings.py:391
msgid "Portuguese" msgid "Portuguese"
msgstr "葡萄牙语" msgstr "葡萄牙语"
#: paperless/settings.py:353 #: paperless/settings.py:392
msgid "Romanian" msgid "Romanian"
msgstr "罗马尼亚语" msgstr "罗马尼亚语"
#: paperless/settings.py:354 #: paperless/settings.py:393
msgid "Russian" msgid "Russian"
msgstr "俄语" msgstr "俄语"
#: paperless/settings.py:355 #: paperless/settings.py:394
msgid "Slovenian" msgid "Slovenian"
msgstr "斯洛语尼亚语" msgstr "斯洛语尼亚语"
#: paperless/settings.py:356 #: paperless/settings.py:395
msgid "Serbian" msgid "Serbian"
msgstr "塞尔维亚语" msgstr "塞尔维亚语"
#: paperless/settings.py:357 #: paperless/settings.py:396
msgid "Swedish" msgid "Swedish"
msgstr "瑞典语" msgstr "瑞典语"
#: paperless/settings.py:358 #: paperless/settings.py:397
msgid "Turkish" msgid "Turkish"
msgstr "土耳其语" msgstr "土耳其语"
#: paperless/settings.py:359 #: paperless/settings.py:398
msgid "Chinese Simplified" msgid "Chinese Simplified"
msgstr "简体中文" msgstr "简体中文"

View File

@ -1,7 +1,7 @@
from typing import Final from typing import Final
from typing import Tuple 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 # Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__)) __full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y # Version string like X.Y

View File

@ -1,3 +1,4 @@
import shutil
import subprocess import subprocess
from django.conf import settings from django.conf import settings
@ -7,10 +8,16 @@ from django.core.checks import Warning
def get_tesseract_langs(): def get_tesseract_langs():
with subprocess.Popen(["tesseract", "--list-langs"], stdout=subprocess.PIPE) as p: proc = subprocess.run(
stdout, stderr = p.communicate() [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() @register()

View File

@ -66,6 +66,7 @@ class RasterisedDocumentParser(DocumentParser):
"image/tiff", "image/tiff",
"image/bmp", "image/bmp",
"image/gif", "image/gif",
"image/webp",
] ]
def has_alpha(self, image): def has_alpha(self, image):
@ -95,7 +96,13 @@ class RasterisedDocumentParser(DocumentParser):
return None return None
def extract_text(self, sidecar_file, pdf_file): 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: with open(sidecar_file) as f:
text = f.read() text = f.read()
@ -142,7 +149,7 @@ class RasterisedDocumentParser(DocumentParser):
"input_file": input_file, "input_file": input_file,
"output_file": output_file, "output_file": output_file,
# need to use threads, since this will be run in daemonized # need to use threads, since this will be run in daemonized
# processes by django-q. # processes via the task library.
"use_threads": True, "use_threads": True,
"jobs": settings.THREADS_PER_WORKER, "jobs": settings.THREADS_PER_WORKER,
"language": settings.OCR_LANGUAGE, "language": settings.OCR_LANGUAGE,
@ -165,9 +172,11 @@ class RasterisedDocumentParser(DocumentParser):
if settings.OCR_MODE == "redo": if settings.OCR_MODE == "redo":
ocrmypdf_args["clean"] = True ocrmypdf_args["clean"] = True
else: else:
# --clean-final is not compatible with --redo-ocr
ocrmypdf_args["clean_final"] = True 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 ocrmypdf_args["deskew"] = True
if settings.OCR_ROTATE_PAGES: 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 # 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 # file created, so OCR the file and create an archive with any
# test located via OCR # text located via OCR
import ocrmypdf import ocrmypdf
from ocrmypdf import InputFileError, EncryptedPdfError from ocrmypdf import InputFileError, EncryptedPdfError

View File

@ -15,5 +15,6 @@ def tesseract_consumer_declaration(sender, **kwargs):
"image/tiff": ".tif", "image/tiff": ".tif",
"image/gif": ".gif", "image/gif": ".gif",
"image/bmp": ".bmp", "image/bmp": ".bmp",
"image/webp": ".webp",
}, },
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -37,6 +37,9 @@ class FakeImageFile(ContextManager):
class TestParser(DirectoriesMixin, TestCase): class TestParser(DirectoriesMixin, TestCase):
SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples")
def assertContainsStrings(self, content, strings): def assertContainsStrings(self, content, strings):
# Asserts that all strings appear in content, in the given order. # Asserts that all strings appear in content, in the given order.
indices = [] indices = []
@ -47,14 +50,18 @@ class TestParser(DirectoriesMixin, TestCase):
self.fail(f"'{s}' is not in '{content}'") self.fail(f"'{s}' is not in '{content}'")
self.assertListEqual(indices, sorted(indices)) self.assertListEqual(indices, sorted(indices))
def test_post_process_text(self):
text_cases = [ text_cases = [
("simple string", "simple string"), ("simple string", "simple string"),
("simple newline\n testing string", "simple newline\ntesting string"), ("simple newline\n testing string", "simple newline\ntesting string"),
("utf-8 строка с пробелами в конце ", "utf-8 строка с пробелами в конце"), (
"utf-8 строка с пробелами в конце ",
"utf-8 строка с пробелами в конце",
),
] ]
def test_post_process_text(self): for source, result in text_cases:
for source, result in self.text_cases:
actual_result = post_process_text(source) actual_result = post_process_text(source)
self.assertEqual( self.assertEqual(
result, 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): def test_get_text_from_pdf(self):
parser = RasterisedDocumentParser(uuid.uuid4()) parser = RasterisedDocumentParser(uuid.uuid4())
text = parser.extract_text( text = parser.extract_text(
@ -461,6 +466,45 @@ class TestParser(DirectoriesMixin, TestCase):
self.assertIn("[OCR skipped on page(s) 4-6]", sidecar) 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") @override_settings(OCR_MODE="skip_noarchive")
def test_multi_page_mixed_no_archive(self): def test_multi_page_mixed_no_archive(self):
""" """
@ -553,23 +597,34 @@ class TestParserFileTypes(DirectoriesMixin, TestCase):
parser = RasterisedDocumentParser(None) parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.bmp"), "image/bmp") parser.parse(os.path.join(self.SAMPLE_FILES, "simple.bmp"), "image/bmp")
self.assertTrue(os.path.isfile(parser.archive_path)) 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): def test_jpg(self):
parser = RasterisedDocumentParser(None) parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.jpg"), "image/jpeg") parser.parse(os.path.join(self.SAMPLE_FILES, "simple.jpg"), "image/jpeg")
self.assertTrue(os.path.isfile(parser.archive_path)) 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) @override_settings(OCR_IMAGE_DPI=200)
def test_gif(self): def test_gif(self):
parser = RasterisedDocumentParser(None) parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.gif"), "image/gif") parser.parse(os.path.join(self.SAMPLE_FILES, "simple.gif"), "image/gif")
self.assertTrue(os.path.isfile(parser.archive_path)) 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): def test_tiff(self):
parser = RasterisedDocumentParser(None) parser = RasterisedDocumentParser(None)
parser.parse(os.path.join(self.SAMPLE_FILES, "simple.tif"), "image/tiff") parser.parse(os.path.join(self.SAMPLE_FILES, "simple.tif"), "image/tiff")
self.assertTrue(os.path.isfile(parser.archive_path)) 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(),
)