From 91102d0335af839e03a0b342b603e37d9ea6c16c Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 00:19:54 -0700
Subject: [PATCH 01/16] Update pyproject.toml
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 60b4154e1..fed4bacdc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
name = "paperless-ngx"
version = "2.18.0"
-description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
+description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
--
2.47.2
From f5e695191027dafa1158a0c7331db4923658e251 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 00:42:42 -0700
Subject: [PATCH 02/16] Update CONTRIBUTING.md
---
CONTRIBUTING.md | 24 +++++-------------------
1 file changed, 5 insertions(+), 19 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e0c52d00b..2f7952ad0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -37,6 +37,8 @@ Before you can run `pytest`, ensure to [properly set up your local environment](
Once you have submitted a **P**ull **R**equest it will be reviewed, approved, and merged by one or more community members of any team. Automated code tests and formatting checks must be passed.
+Important: Pull requests that implement a new feature or enhancement _should almost always target an existing feature request_ with evidence of community interest and discussion. This is in order to balance the work of implementing and maintaining new features / enhancements. Instead of opening a PR which does not meet this requirement, please open a feature request instead, to gather feedback from both users and the project maintainers.
+
## Non-Trivial Requests
PRs deemed `non-trivial` will go through a stricter review process before being merged into `dev`. This is to ensure code quality and complete functionality (free of side effects).
@@ -109,28 +111,12 @@ Paperless-ngx is a community project. We do our best to delegate permission and
## Structure
-As of writing, there are 21 members in paperless-ngx. 4 of these people have complete administrative privileges to the repo:
+There are currently 2 members in paperless-ngx with complete administrative privileges to the repo:
- [@shamoon](https://github.com/shamoon)
-- [@bauerj](https://github.com/bauerj)
-- [@qcasey](https://github.com/qcasey)
-- [@FrankStrieter](https://github.com/FrankStrieter)
-
-There are 5 teams collaborating on specific tasks within paperless-ngx:
-
-- @paperless-ngx/backend (Python / django)
-- @paperless-ngx/frontend (JavaScript / Typescript)
-- @paperless-ngx/ci-cd (GitHub Actions / Deployment)
-- @paperless-ngx/issues (Issue triage)
-- @paperless-ngx/test (General testing for larger PRs)
-
-## Permissions
-
-All team members are notified when mentioned or assigned to a relevant issue or pull request. Additionally, each team has slightly different access to paperless-ngx:
+- [@stumpylog](https://github.com/stumpylog)
-- The **test** team has no special permissions.
-- The **issues** team has `triage` access. This means they can organize issues and pull requests.
-- The **backend**, **frontend**, and **ci-cd** teams have `write` access. This means they can approve PRs and push code, containers, releases, and more.
+There are other members who occasionally contribute but we are actively seeking more dedicated maintainers of the project. Please reach out if you are interested.
## Joining
--
2.47.2
From d878bc153a98e5c5139141ea668f84f496d7c7e2 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 01:13:27 -0700
Subject: [PATCH 03/16] Fix some button consistency (#10593)
--
2.47.2
From f00a565130c20271b44130a87e4330f7f2822077 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 01:33:52 -0700
Subject: [PATCH 04/16] Documentation: fix Postgres version
---
docs/administration.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/administration.md b/docs/administration.md
index fe5dd5a9b..3fe8bc19a 100644
--- a/docs/administration.md
+++ b/docs/administration.md
@@ -185,7 +185,7 @@ the instructions from your database's documentation for how to upgrade between m
!!! note
- As of Paperless-ngx v2.18, the minimum supported version of PostgreSQL is 13.
+ As of Paperless-ngx v2.18, the minimum supported version of PostgreSQL is 14.
For PostgreSQL, refer to [Upgrading a PostgreSQL Cluster](https://www.postgresql.org/docs/current/upgrading.html).
--
2.47.2
From 521fd1c9574ab39568754eccf3e3688646115d64 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 07:19:50 -0700
Subject: [PATCH 05/16] Fix: fix app logo validation with no file (#10599)
---
src/paperless/serialisers.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py
index 3398d53d1..754a3c594 100644
--- a/src/paperless/serialisers.py
+++ b/src/paperless/serialisers.py
@@ -209,7 +209,7 @@ class ApplicationConfigurationSerializer(serializers.ModelSerializer):
return super().update(instance, validated_data)
def validate_app_logo(self, file):
- if magic.from_buffer(file.read(2048), mime=True) == "image/svg+xml":
+ if file and magic.from_buffer(file.read(2048), mime=True) == "image/svg+xml":
reject_dangerous_svg(file)
return file
--
2.47.2
From ca9b5d95868269716c12029c997e48a38a73fcf0 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 09:25:42 -0700
Subject: [PATCH 06/16] Documentation: fix filters docs (#10600)
---
docs/advanced_usage.md | 29 +++++++++++++----------------
1 file changed, 13 insertions(+), 16 deletions(-)
diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md
index 763488189..378ad424a 100644
--- a/docs/advanced_usage.md
+++ b/docs/advanced_usage.md
@@ -469,12 +469,12 @@ The `get_cf_value` filter retrieves a value from custom field data with optional
##### Datetime Formatting
-The `format_datetime`filter formats a datetime string or datetime object using Python's strftime formatting.
+The `datetime` filter formats a datetime string or datetime object using Python's strftime formatting.
###### Syntax
```jinja2
-{{ datetime_value | format_datetime('%Y-%m-%d %H:%M:%S') }}
+{{ datetime_value | datetime('%Y-%m-%d %H:%M:%S') }}
```
###### Parameters
@@ -490,15 +490,11 @@ The `format_datetime`filter formats a datetime string or datetime object using P
```jinja2
-{{ created_at | format_datetime('%B %d, %Y at %I:%M %p') }}
+{{ created | datetime('%B %d, %Y at %I:%M %p') }}
-
-{{ "2024-01-15T14:30:00" | format_datetime('%m/%d/%Y') }}
-
-
-{{ timestamp | format_datetime('%A, %B %d, %Y') }}
+{{ custom_fields | get_cf_value('Date Field') | datetime('%A, %B %d, %Y') }}
```
@@ -508,7 +504,8 @@ for the possible codes and their meanings.
##### Date Localization
The `localize_date` filter formats a date or datetime object into a localized string using Babel internationalization.
-This takes into account the provided locale for translation.
+This takes into account the provided locale for translation. Since this must be used on a date or datetime object,
+you must access the field directly, i.e. `document.created`.
###### Syntax
@@ -531,27 +528,27 @@ This takes into account the provided locale for translation.
```jinja2
-{{ created_date | localize_date('short', 'en_US') }}
+{{ document.created | localize_date('short', 'en_US') }}
-{{ created_date | localize_date('medium', 'en_US') }}
+{{ document.created | localize_date('medium', 'en_US') }}
-{{ created_date | localize_date('long', 'en_US') }}
+{{ document.created | localize_date('long', 'en_US') }}
-{{ created_date | localize_date('full', 'en_US') }}
+{{ document.created | localize_date('full', 'en_US') }}
-{{ created_date | localize_date('medium', 'fr_FR') }}
+{{ document.created | localize_date('medium', 'fr_FR') }}
-{{ created_date | localize_date('medium', 'de_DE') }}
+{{ document.created | localize_date('medium', 'de_DE') }}
-{{ created_date | localize_date('dd/MM/yyyy', 'en_GB') }}
+{{ document.created | localize_date('dd/MM/yyyy', 'en_GB') }}
```
--
2.47.2
From 1bbac9948a3239be19ca1b88b103b29ac734d4b8 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 10:45:51 -0700
Subject: [PATCH 07/16] Development: add tomli as codespell additional dep for
py < 3.11
---
.pre-commit-config.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index ab94a22b8..93e38301e 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -31,6 +31,7 @@ repos:
rev: v2.4.1
hooks:
- id: codespell
+ additional_dependencies: [tomli]
exclude_types:
- pofile
- json
--
2.47.2
From e0b0dd8548378494161723e6da8ac53746a4f5ff Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 17 Aug 2025 13:21:27 -0700
Subject: [PATCH 08/16] New Crowdin translations by GitHub Action (#10589)
---
src-ui/src/locale/messages.af_ZA.xlf | 4 +-
src-ui/src/locale/messages.ar_AR.xlf | 4 +-
src-ui/src/locale/messages.be_BY.xlf | 4 +-
src-ui/src/locale/messages.bg_BG.xlf | 4 +-
src-ui/src/locale/messages.ca_ES.xlf | 40 ++++-----
src-ui/src/locale/messages.cs_CZ.xlf | 4 +-
src-ui/src/locale/messages.da_DK.xlf | 4 +-
src-ui/src/locale/messages.de_DE.xlf | 4 +-
src-ui/src/locale/messages.el_GR.xlf | 4 +-
src-ui/src/locale/messages.es_ES.xlf | 4 +-
src-ui/src/locale/messages.et_EE.xlf | 4 +-
src-ui/src/locale/messages.fa_IR.xlf | 4 +-
src-ui/src/locale/messages.fi_FI.xlf | 4 +-
src-ui/src/locale/messages.fr_FR.xlf | 4 +-
src-ui/src/locale/messages.he_IL.xlf | 4 +-
src-ui/src/locale/messages.hr_HR.xlf | 4 +-
src-ui/src/locale/messages.hu_HU.xlf | 4 +-
src-ui/src/locale/messages.id_ID.xlf | 4 +-
src-ui/src/locale/messages.it_IT.xlf | 4 +-
src-ui/src/locale/messages.ja_JP.xlf | 4 +-
src-ui/src/locale/messages.ko_KR.xlf | 4 +-
src-ui/src/locale/messages.lb_LU.xlf | 4 +-
src-ui/src/locale/messages.lt_LT.xlf | 4 +-
src-ui/src/locale/messages.lv_LV.xlf | 4 +-
src-ui/src/locale/messages.ms_MY.xlf | 4 +-
src-ui/src/locale/messages.nl_NL.xlf | 4 +-
src-ui/src/locale/messages.no_NO.xlf | 4 +-
src-ui/src/locale/messages.pl_PL.xlf | 4 +-
src-ui/src/locale/messages.pt_BR.xlf | 4 +-
src-ui/src/locale/messages.pt_PT.xlf | 4 +-
src-ui/src/locale/messages.ro_RO.xlf | 4 +-
src-ui/src/locale/messages.ru_RU.xlf | 4 +-
src-ui/src/locale/messages.sk_SK.xlf | 4 +-
src-ui/src/locale/messages.sl_SI.xlf | 4 +-
src-ui/src/locale/messages.sr_CS.xlf | 4 +-
src-ui/src/locale/messages.sv_SE.xlf | 4 +-
src-ui/src/locale/messages.th_TH.xlf | 4 +-
src-ui/src/locale/messages.tr_TR.xlf | 94 +++++++++++-----------
src-ui/src/locale/messages.uk_UA.xlf | 4 +-
src-ui/src/locale/messages.vi_VN.xlf | 4 +-
src-ui/src/locale/messages.zh_CN.xlf | 4 +-
src-ui/src/locale/messages.zh_TW.xlf | 4 +-
src/locale/ca_ES/LC_MESSAGES/django.po | 2 +-
src/locale/tr_TR/LC_MESSAGES/django.po | 107 +++++++++++++------------
44 files changed, 202 insertions(+), 201 deletions(-)
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index f0b20c209..7bfd14af7 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 7971d01ea..188d35c6a 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index e72373c80..a24d161a5 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index 0d03b8bae..3ae55e1bc 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index c8acd1df8..1029dc96e 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -5998,7 +5998,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ Sel·lecciona totes pà gines
Deselect all pages
@@ -6006,7 +6006,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ Desel·lecciona totes pà gines
Rotate selected pages counter-clockwise
@@ -6014,7 +6014,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ Gira pà gines en sentit antihorari
Rotate selected pages clockwise
@@ -6022,7 +6022,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ Gira pà gines en sentit horari
Delete selected pages
@@ -6030,7 +6030,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ Esborra pà gines seleccionades
Rotate page counter-clockwise
@@ -6038,7 +6038,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ Gira pà gina en sentit antihorari
Rotate page clockwise
@@ -6046,7 +6046,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ Gira pà gina en sentit horari
Delete page
@@ -6054,7 +6054,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Esborrar pà gina
Add / remove document split here
@@ -6062,7 +6062,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ Afegeix/elimina el document dividit aquÃ
Split here
@@ -6070,7 +6070,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ Divideix aquÃ
Create new document(s)
@@ -6078,7 +6078,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ Crea nou document(s)
Update existing document
@@ -6086,23 +6086,23 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ Actualitza document existent
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
- Copy metadata
+ Copiar metadades
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
- Delete original
+ Esborra original
Merge with existing permissions
@@ -7192,7 +7192,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ de
-
@@ -7252,7 +7252,7 @@
src/app/components/document-detail/document-detail.component.ts
1359
- PDF Editor
+ Editor PDF
Send
@@ -7800,7 +7800,7 @@
src/app/components/document-detail/document-detail.component.ts
1378
- PDF edit operation for "" will begin in the background.
+ Operació d'edició de PDF per a "" començarà en segon pla.
Error executing PDF edit operation
@@ -7808,7 +7808,7 @@
src/app/components/document-detail/document-detail.component.ts
1390
- Error executing PDF edit operation
+ Error en executar l'edició del PDF
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index ab15ee667..31121ebdb 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 4d577ea96..095ec4f0f 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index d8c6a31d5..d768a95ae 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Metadaten kopieren
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Original löschen
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index 876a3ee08..ce803397b 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 5ceeeb8dd..bb3c79238 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index ceb912ffc..e6802d98c 100644
--- a/src-ui/src/locale/messages.et_EE.xlf
+++ b/src-ui/src/locale/messages.et_EE.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index 6e6fd73a1..9151f7f50 100644
--- a/src-ui/src/locale/messages.fa_IR.xlf
+++ b/src-ui/src/locale/messages.fa_IR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 328b599ad..d3b3ee4c0 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index d6f68e25a..cac14304b 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 551e6e62c..c5426f94b 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 50e130e69..1819f81bc 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index 2260b05ea..7e57bdd71 100644
--- a/src-ui/src/locale/messages.hu_HU.xlf
+++ b/src-ui/src/locale/messages.hu_HU.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index a418848b8..177c7f984 100644
--- a/src-ui/src/locale/messages.id_ID.xlf
+++ b/src-ui/src/locale/messages.id_ID.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 9b2321531..fc97e4b1a 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copia metadati
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Elimina originale
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index 4906dd14b..b7f3b168a 100644
--- a/src-ui/src/locale/messages.ja_JP.xlf
+++ b/src-ui/src/locale/messages.ja_JP.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index c8daabe80..b8c992801 100644
--- a/src-ui/src/locale/messages.ko_KR.xlf
+++ b/src-ui/src/locale/messages.ko_KR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index a7fa282d7..a506bbac4 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 51f04c7b1..4f19fefc3 100644
--- a/src-ui/src/locale/messages.lt_LT.xlf
+++ b/src-ui/src/locale/messages.lt_LT.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index 877a181f8..3364b9919 100644
--- a/src-ui/src/locale/messages.lv_LV.xlf
+++ b/src-ui/src/locale/messages.lv_LV.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf
index 55a4d289d..0501eae7e 100644
--- a/src-ui/src/locale/messages.ms_MY.xlf
+++ b/src-ui/src/locale/messages.ms_MY.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index d59e75014..14e7f96f3 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 0bf6e7770..bb6072628 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index e1fe1cf79..aeca3dea6 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 75d64bc5e..fc9b693ea 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 82aa6dcdc..629b41b18 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 2330203a4..7196f005d 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 267b0a477..3f73fb594 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index 10391546e..9ef30132d 100644
--- a/src-ui/src/locale/messages.sk_SK.xlf
+++ b/src-ui/src/locale/messages.sk_SK.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 407538ab8..ce926c977 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 4742530c2..da776867a 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 336bccfbc..885c9965b 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index e3d49333f..b2aa706d7 100644
--- a/src-ui/src/locale/messages.th_TH.xlf
+++ b/src-ui/src/locale/messages.th_TH.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 6ffaac2ea..12aa787c2 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -17,7 +17,7 @@
131,135
Currently selected slide number read by screen reader
- Slide of
+ / Slaytı
Previous
@@ -268,7 +268,7 @@
node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.1.4_@angular+core@20.1.4_@angular+_4264661dcfc97b5bf5cf26958990f623/node_modules/src/progressbar/progressbar.ts
41,42
-
+
Document was added to Paperless-ngx.
@@ -280,7 +280,7 @@
src/app/app.component.ts
104
- Document was added to Paperless-ngx.
+ belgesi Paperless-ngx'e eklendi.
Open document
@@ -324,7 +324,7 @@
src/app/app.component.ts
134
- Document is being processed by Paperless-ngx.
+ belgesi Paperless-ngx tarafından iÅleniyor.
Dashboard
@@ -444,7 +444,7 @@
src/app/app.component.ts
178
- The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some.
+ Kontrol paneli, âGelen Kutusuâ gibi kaydedilmiÅ görünümleri göstermek için kullanılabilir. > Görünümler, oluÅturduktan sonra Yönet > KaydedilmiÅ Görünümler altında bulunur.
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.
@@ -452,7 +452,7 @@
src/app/app.component.ts
185
- Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
+ Belgeleri buraya sürükleyip bırakarak yüklemeye baÅlayın veya bunları tüketme klasörüne yerleÅtirin. Belgeleri web uygulamasının diÄer tüm sayfalarında istediÄiniz yere sürükleyip bırakabilirsiniz. Bunu yaptıÄınızda, Paperless-ngx makine öÄrenimi algoritmalarını eÄitmeye baÅlayacaktır.
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.
@@ -460,7 +460,7 @@
src/app/app.component.ts
190
- The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
+ Belge listesi, tüm belgelerinizi gösterir ve filtreleme ile toplu düzenleme imkanı sunar. Ãç farklı görüntüleme stili vardır: liste, küçük kartlar ve büyük kartlar. Düzenleme için Åu anda açık olan belgelerin listesi kenar çubuÄunda gösterilir.
The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
@@ -468,7 +468,7 @@
src/app/app.component.ts
197
- The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
+ Filtreleme araçları, çeÅitli aramalar, tarihler, etiketler vb. kullanarak belgeleri hızlı bir Åekilde bulmanızı saÄlar.
Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
@@ -476,7 +476,7 @@
src/app/app.component.ts
203
- Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
+ Herhangi bir filtre kombinasyonu, daha sonra kontrol panelinde ve/veya kenar çubuÄunda görüntülenebilen bir âgörünümâ olarak kaydedilebilir.
Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
@@ -496,7 +496,7 @@
src/app/components/manage/mail/mail.component.html
4
- Manage e-mail accounts and rules for automatically importing documents.
+ E-posta hesaplarını ve belgeleri otomatik olarak içe aktarmak için kuralları yönetin.
Workflows give you more control over the document pipeline.
@@ -504,7 +504,7 @@
src/app/app.component.ts
224
- Workflows give you more control over the document pipeline.
+ İŠakıÅları, belge iÅ akıÅı üzerinde daha fazla kontrol saÄlar.
File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -516,7 +516,7 @@
src/app/components/admin/tasks/tasks.component.html
4
- File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
+ Dosya Görevleri, tüketilmiÅ, tüketilmeyi bekleyen veya iÅlem sırasında baÅarısız olmuÅ belgeleri gösterir.
Check out the settings for various tweaks to the web app.
@@ -524,7 +524,7 @@
src/app/app.component.ts
240
- Check out the settings for various tweaks to the web app.
+ Web uygulamasında çeÅitli düzenlemeler için ayarları kontrol edin.
Thank you! ð
@@ -540,7 +540,7 @@
src/app/app.component.ts
250
- There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
+ Burada ele almadıÄımız daha <em>ton</em> fazla özellik ve bilgi var, ancak bu bilgiler baÅlangıç için yeterli olacaktır. Daha fazla bilgi edinmek veya sorunları bildirmek için belgeleri inceleyin veya GitHub'daki projeyi ziyaret edin.
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
@@ -556,7 +556,7 @@
src/app/components/admin/config/config.component.html
2
- Application Configuration
+ Uygulama Konfigürasyonu
Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
@@ -564,7 +564,7 @@
src/app/components/admin/config/config.component.html
4
- Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
+ Bu Paperless-ngx kurulumunun <strong>tüm</strong> kullanıcıları için geçerli olan genel uygulama yapılandırma seçenekleri. Seçenekler, ortam deÄiÅkenleri veya yapılandırma dosyası kullanılarak da ayarlanabilir, ancak buradaki deÄer her zaman öncelikli olacaktır.
Read the documentation about this setting
@@ -572,7 +572,7 @@
src/app/components/admin/config/config.component.html
25
- Read the documentation about this setting
+ Bu ayar hakkındaki belgeyi okuyun
Enable
@@ -584,7 +584,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
123
- Enable
+ EtkinleÅtir
Discard
@@ -676,7 +676,7 @@
src/app/components/admin/config/config.component.ts
103
- Error retrieving config
+ Yapılandırma alınırken hata oluÅtu
Invalid JSON
@@ -692,7 +692,7 @@
src/app/components/admin/config/config.component.ts
173
- Configuration updated
+ Konfigürasyon güncellendi
An error occurred updating configuration
@@ -700,7 +700,7 @@
src/app/components/admin/config/config.component.ts
178
- An error occurred updating configuration
+ Konfigürasyon güncellenirken bir hata oluÅtu
File successfully updated
@@ -708,7 +708,7 @@
src/app/components/admin/config/config.component.ts
200
- File successfully updated
+ Dosya baÅarıyla güncellendi
An error occurred uploading file
@@ -740,7 +740,7 @@
src/app/components/admin/logs/logs.component.html
4
- Review the log files for the application and for email checking.
+ Uygulama ve e-posta kontrolü için günlük dosyalarını inceleyin.
Auto refresh
@@ -864,7 +864,7 @@
src/app/components/admin/settings/settings.component.html
4
- Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>.
+ Görünümü, bildirimleri ve daha fazlasını özelleÅtirme seçenekleri. Ayarlar yalnızca <strong>mevcut kullanıcı</strong> için geçerlidir.
Start tour
@@ -884,7 +884,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
2
- System Status
+ Sistem Durumu
Open Django Admin
@@ -1076,7 +1076,7 @@
src/app/components/admin/settings/settings.component.html
165,167
- Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+ Güncelleme kontrolü, yeni bir sürümün mevcut olup olmadıÄını belirlemek için GitHub API'sını pingleyerek çalıÅır. Uygulamanın gerçek güncellemesi yine de manuel olarak yapılmalıdır
No tracking data is collected by the app in any way.
@@ -1084,7 +1084,7 @@
src/app/components/admin/settings/settings.component.html
169
- No tracking data is collected by the app in any way.
+ Uygulama tarafından hiçbir Åekilde izleme verisi toplanmaz.
Saved Views
@@ -1104,7 +1104,7 @@
src/app/components/manage/saved-views/saved-views.component.html
2
- Saved Views
+ Kaydedilen Görünümler
Show warning when closing saved views with unsaved changes
@@ -1120,7 +1120,7 @@
src/app/components/admin/settings/settings.component.html
179
- Show document counts in sidebar saved views
+ Kenar çubuÄunda kaydedilmiÅ görünümlerde belge sayısını göster
Document editing
@@ -1128,7 +1128,7 @@
src/app/components/admin/settings/settings.component.html
185
- Document editing
+ Belge düzenleme
Use PDF viewer provided by the browser
@@ -1152,7 +1152,7 @@
src/app/components/admin/settings/settings.component.html
195
- Default zoom
+ Varsayılan yakınlaÅtırma
Fit width
@@ -1160,7 +1160,7 @@
src/app/components/admin/settings/settings.component.html
199
- Fit width
+ GeniÅliÄi sıÄdır
Fit page
@@ -1168,7 +1168,7 @@
src/app/components/admin/settings/settings.component.html
200
- Fit page
+ Sayfayı sıÄdır
Only applies to the Paperless-ngx PDF viewer.
@@ -1176,7 +1176,7 @@
src/app/components/admin/settings/settings.component.html
202
- Only applies to the Paperless-ngx PDF viewer.
+ Yalnızca Paperless-ngx PDF görüntüleyici için geçerlidir.
Automatically remove inbox tag(s) on save
@@ -1184,7 +1184,7 @@
src/app/components/admin/settings/settings.component.html
208
- Automatically remove inbox tag(s) on save
+ Kaydederken gelen kutusu etiketlerini otomatik olarak kaldır
Show document thumbnail during loading
@@ -1192,7 +1192,7 @@
src/app/components/admin/settings/settings.component.html
214
- Show document thumbnail during loading
+ Yükleme sırasında belge küçük resmini göster
Global search
@@ -1204,7 +1204,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
122
- Global search
+ Global arama
Do not include advanced search results
@@ -1212,7 +1212,7 @@
src/app/components/admin/settings/settings.component.html
221
- Do not include advanced search results
+ GeliÅmiÅ arama sonuçlarını dahil etmeyin
Full search links to
@@ -1220,7 +1220,7 @@
src/app/components/admin/settings/settings.component.html
227
- Full search links to
+ Tam arama baÄlantıları
Title and content search
@@ -1228,7 +1228,7 @@
src/app/components/admin/settings/settings.component.html
231
- Title and content search
+ BaÅlık ve içerik arama
Advanced search
@@ -1376,7 +1376,7 @@
src/app/components/admin/settings/settings.component.html
266,268
- Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI.
+ Ayarlar, web kullanıcı arayüzü üzerinden oluÅturulan nesneler (Etiketler, Posta Kuralları vb., ancak belgeler hariç) bu kullanıcı hesabına uygulanır
Default Owner
@@ -1768,7 +1768,7 @@
src/app/components/admin/tasks/tasks.component.html
16
- Filter by
+ Filtrele
Name
@@ -2000,7 +2000,7 @@
src/app/components/admin/tasks/tasks.component.html
97
- click for full output
+ tam çıktı için tıklayın
Dismiss
@@ -2028,7 +2028,7 @@
src/app/components/admin/tasks/tasks.component.html
134
- {VAR_PLURAL, plural, =1 {One task} other { total tasks}}
+ {VAR_PLURAL, plural, =1 {Bir görev} other { toplam görevler}}
 ( selected)
@@ -2036,7 +2036,7 @@
src/app/components/admin/tasks/tasks.component.html
136
- Â ( selected)
+ ( seçildi)
Failed
@@ -6094,7 +6094,7 @@ tüm krite
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6102,7 +6102,7 @@ tüm krite
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 2d032b3a2..2722834b9 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index 1abf9542e..9a55059be 100644
--- a/src-ui/src/locale/messages.vi_VN.xlf
+++ b/src-ui/src/locale/messages.vi_VN.xlf
@@ -7181,7 +7181,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -7189,7 +7189,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index f345e1f1d..511b919df 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index daff706d1..257af2aee 100644
--- a/src-ui/src/locale/messages.zh_TW.xlf
+++ b/src-ui/src/locale/messages.zh_TW.xlf
@@ -6092,7 +6092,7 @@
Copy metadata
src/app/components/common/pdf-editor/pdf-editor.component.html
- 93
+ 94
Copy metadata
@@ -6100,7 +6100,7 @@
Delete original
src/app/components/common/pdf-editor/pdf-editor.component.html
- 97
+ 98
Delete original
diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po
index 0d61dd553..295746821 100644
--- a/src/locale/ca_ES/LC_MESSAGES/django.po
+++ b/src/locale/ca_ES/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-17 12:12\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index cb007cc87..913a3b318 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-17 12:12\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -124,7 +124,7 @@ msgstr "gelen kutusu etiketi"
#: documents/models.py:106
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
-msgstr "Bu künyeyi, gelen kutusu künyesi olarak imler: Yeni aktarılan tüm belgeler gelen kutusu künyesi ile künyeleneceklerdir."
+msgstr "Bu etiketi, gelen kutusu etiketi olarak iÅaretle: Yeni aktarılan tüm dokümanlar gelen kutusu etiketi ile etiketlendirileceklerdir."
#: documents/models.py:112
msgid "tag"
@@ -914,7 +914,7 @@ msgstr "E-postanın konusu, bazı yer tutucular içerebilir, belgelere bakın."
#: documents/models.py:1097
msgid "emails to"
-msgstr ""
+msgstr "kime"
#: documents/models.py:1100
msgid "The destination email addresses, comma separated."
@@ -1162,7 +1162,7 @@ msgstr "iÅ akıÅı çalıÅtırma"
#: documents/models.py:1473
msgid "workflow runs"
-msgstr ""
+msgstr "iÅ akıÅı çalıÅtırma"
#: documents/serialisers.py:139
#, python-format
@@ -1184,7 +1184,7 @@ msgstr "Geçersiz deÄiÅken algılandı."
#: documents/templates/account/account_inactive.html:5
msgid "Paperless-ngx account inactive"
-msgstr ""
+msgstr "Paperless-ngx hesabı pasif"
#: documents/templates/account/account_inactive.html:9
msgid "Account inactive."
@@ -1201,13 +1201,14 @@ msgstr "Oturum açmaya geri dön"
#: documents/templates/account/email/base_message.txt:1
#, python-format
msgid "Hello from %(site_name)s!"
-msgstr ""
+msgstr "%(site_name) uygulamasından merhaba."
#: documents/templates/account/email/base_message.txt:5
#, python-format
msgid "Thank you for using %(site_name)s!\n"
"%(site_domain)s"
-msgstr ""
+msgstr "%(site_name)s'i kullandıÄınız için teÅekkürler!\n"
+"%(site_domain)s"
#: documents/templates/account/login.html:5
msgid "Paperless-ngx sign in"
@@ -1220,7 +1221,7 @@ msgstr "Lütfen oturum açın."
#: documents/templates/account/login.html:12
#, python-format
msgid "Don't have an account yet? Sign up"
-msgstr ""
+msgstr "Henüz hesabınız yok mu? Kaydol"
#: documents/templates/account/login.html:25
#: documents/templates/account/signup.html:22
@@ -1245,7 +1246,7 @@ msgstr "Åifrenizi mi unuttunuz?"
#: documents/templates/account/login.html:51
#: documents/templates/account/signup.html:57
msgid "or sign in via"
-msgstr ""
+msgstr "veya giriÅ yap"
#: documents/templates/account/password_reset.html:5
msgid "Paperless-ngx reset password request"
@@ -1253,7 +1254,7 @@ msgstr "Paperless-ngx parola sıfırlama isteÄi"
#: documents/templates/account/password_reset.html:9
msgid "Enter your email address below, and we'll email instructions for setting a new one."
-msgstr ""
+msgstr "AÅaÄıya e-posta adresinizi girin, yeni bir tane oluÅturmak için gerekli talimatları e-posta ile gönderelim."
#: documents/templates/account/password_reset.html:12
msgid "An error occurred. Please try again."
@@ -1273,11 +1274,11 @@ msgstr "Gelen kutunuza bakın."
#: documents/templates/account/password_reset_done.html:13
msgid "We've emailed you instructions for setting your password. You should receive the email shortly!"
-msgstr ""
+msgstr "Åifrenizi ayarlamak için gerekli talimatları size e-posta ile gönderdik. E-posta kısa süre içinde elinize ulaÅacaktır!"
#: documents/templates/account/password_reset_from_key.html:5
msgid "Paperless-ngx reset password confirmation"
-msgstr ""
+msgstr "Paperless-ngx Åifre sıfırlama onayı"
#: documents/templates/account/password_reset_from_key.html:9
msgid "Set a new password."
@@ -1301,7 +1302,7 @@ msgstr "Parolamı deÄiÅtir"
#: documents/templates/account/password_reset_from_key_done.html:5
msgid "Paperless-ngx reset password complete"
-msgstr ""
+msgstr "Paperless-ngx Åifre sıfırlama iÅlemi tamamlandı"
#: documents/templates/account/password_reset_from_key_done.html:9
msgid "Password reset complete."
@@ -1310,11 +1311,11 @@ msgstr "Åifre sıfırlama tamamlandı."
#: documents/templates/account/password_reset_from_key_done.html:14
#, python-format
msgid "Your new password has been set. You can now log in"
-msgstr ""
+msgstr "Yeni Åifreniz ayarlandı. Artık giriÅ yapabilirsiniz"
#: documents/templates/account/signup.html:5
msgid "Paperless-ngx sign up"
-msgstr ""
+msgstr "Paperless-ngx kaydolun"
#: documents/templates/account/signup.html:11
#, python-format
@@ -1323,7 +1324,7 @@ msgstr "Bir hesabınız mı var? GiriŠyapın"
#: documents/templates/account/signup.html:19
msgid "Note: This is the first user account for this installation and will be granted superuser privileges."
-msgstr ""
+msgstr "Not: Bu, bu kurulum için ilk kullanıcı hesabıdır ve süper kullanıcı ayrıcalıkları verilecektir."
#: documents/templates/account/signup.html:23
#: documents/templates/socialaccount/signup.html:14
@@ -1349,7 +1350,7 @@ msgstr "Hâlâ burada mısınız? Hmm, bir Åeyler yanlıŠolabilir."
#: documents/templates/index.html:62
msgid "Here's a link to the docs."
-msgstr ""
+msgstr "İÅte belgelerin baÄlantısı."
#: documents/templates/mfa/authenticate.html:7
msgid "Paperless-ngx Two-Factor Authentication"
@@ -1357,7 +1358,7 @@ msgstr "Paperless-ngx İki AÅamalı DoÄrulama"
#: documents/templates/mfa/authenticate.html:12
msgid "Your account is protected by two-factor authentication. Please enter an authenticator code:"
-msgstr ""
+msgstr "Hesabınız iki faktörlü kimlik doÄrulama ile korunmaktadır. Lütfen kimlik doÄrulama kodunu girin:"
#: documents/templates/mfa/authenticate.html:17
msgid "Code"
@@ -1378,17 +1379,17 @@ msgstr "BaÄlantının kullanım süresi doldu."
#: documents/templates/socialaccount/authentication_error.html:5
#: documents/templates/socialaccount/login.html:5
msgid "Paperless-ngx social account sign in"
-msgstr ""
+msgstr "Paperless-ngx sosyal hesap giriÅ"
#: documents/templates/socialaccount/authentication_error.html:10
#, python-format
msgid "An error occurred while attempting to login via your social network account. Back to the login page"
-msgstr ""
+msgstr "Sosyal aÄ hesabınızla giriÅ yapmaya çalıÅırken bir hata oluÅtu. giriÅ sayfasına geri dönün"
#: documents/templates/socialaccount/login.html:10
#, python-format
msgid "You are about to connect a new third-party account from %(provider)s."
-msgstr ""
+msgstr "%(provider)s üzerinden yeni bir üçüncü taraf hesabı baÄlamak üzeresiniz."
#: documents/templates/socialaccount/login.html:13
msgid "Continue"
@@ -1396,7 +1397,7 @@ msgstr "Devam et"
#: documents/templates/socialaccount/signup.html:5
msgid "Paperless-ngx social account sign up"
-msgstr ""
+msgstr "Paperless-ngx sosyal hesap kaydı"
#: documents/templates/socialaccount/signup.html:10
#, python-format
@@ -1405,26 +1406,26 @@ msgstr "GiriŠyapmak için %(provider_name)s hesabınızı kullanmak üzeresini
#: documents/templates/socialaccount/signup.html:11
msgid "As a final step, please complete the following form:"
-msgstr ""
+msgstr "Son adım olarak, lütfen aÅaÄıdaki formu doldurun:"
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr ""
+msgstr "URI {value} ayrıÅtırılamıyor, Åema eksik"
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr ""
+msgstr "URI {value} ayrıÅtırılamıyor, aÄ konumu veya yol eksik"
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "URI Åeması â{parts.scheme}â izin verilmez. İzin verilen Åemalar: {â, â.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr ""
+msgstr "URI {value} iÅlenemiyor"
#: paperless/apps.py:11
msgid "Paperless"
@@ -1464,7 +1465,7 @@ msgstr "zorla"
#: paperless/models.py:42
msgid "skip_noarchive"
-msgstr ""
+msgstr "skip_noarchive"
#: paperless/models.py:50
msgid "never"
@@ -1472,7 +1473,7 @@ msgstr "asla"
#: paperless/models.py:51
msgid "with_text"
-msgstr ""
+msgstr "with_text"
#: paperless/models.py:52
msgid "always"
@@ -1484,7 +1485,7 @@ msgstr "temizle"
#: paperless/models.py:61
msgid "clean-final"
-msgstr ""
+msgstr "clean-final"
#: paperless/models.py:62
msgid "none"
@@ -1492,7 +1493,7 @@ msgstr "hiçbiri"
#: paperless/models.py:70
msgid "LeaveColorUnchanged"
-msgstr ""
+msgstr "RenkleriDegistirme"
#: paperless/models.py:71
msgid "RGB"
@@ -1500,7 +1501,7 @@ msgstr "RGB"
#: paperless/models.py:72
msgid "UseDeviceIndependentColor"
-msgstr ""
+msgstr "CihazBagimsizRenginiKullan"
#: paperless/models.py:73
msgid "Gray"
@@ -1512,15 +1513,15 @@ msgstr "CMYK"
#: paperless/models.py:83
msgid "Sets the output PDF type"
-msgstr ""
+msgstr "Ãıktı PDF türünü ayarlar"
#: paperless/models.py:95
msgid "Do OCR from page 1 to this value"
-msgstr ""
+msgstr "Sayfa 1'den bu deÄere kadar OCR yapın"
#: paperless/models.py:101
msgid "Do OCR using these languages"
-msgstr ""
+msgstr "Bu dilleri kullanarak OCR yapın"
#: paperless/models.py:108
msgid "Sets the OCR mode"
@@ -1528,19 +1529,19 @@ msgstr ""
#: paperless/models.py:116
msgid "Controls the generation of an archive file"
-msgstr ""
+msgstr "ArÅiv dosyasının oluÅturulmasını kontrol eder"
#: paperless/models.py:124
msgid "Sets image DPI fallback value"
-msgstr ""
+msgstr "Görüntü DPI yedek deÄerini ayarlar"
#: paperless/models.py:131
msgid "Controls the unpaper cleaning"
-msgstr ""
+msgstr "KaÄıt temizlemeyi kontrol eder"
#: paperless/models.py:138
msgid "Enables deskew"
-msgstr ""
+msgstr "EÄriliÄi düzeltir"
#: paperless/models.py:141
msgid "Enables page rotation"
@@ -1548,19 +1549,19 @@ msgstr "Sayfa döndürmeyi etkinleÅtir"
#: paperless/models.py:146
msgid "Sets the threshold for rotation of pages"
-msgstr ""
+msgstr "Sayfaların döndürülmesi için eÅik deÄerini ayarlar"
#: paperless/models.py:152
msgid "Sets the maximum image size for decompression"
-msgstr ""
+msgstr "SıkıÅtırmanın açılması için maksimum görüntü boyutunu ayarlar"
#: paperless/models.py:158
msgid "Sets the Ghostscript color conversion strategy"
-msgstr ""
+msgstr "Ghostscript renk dönüÅtürme stratejisini ayarlar"
#: paperless/models.py:166
msgid "Adds additional user arguments for OCRMyPDF"
-msgstr ""
+msgstr "OCRMyPDF için ek kullanıcı argümanları ekler"
#: paperless/models.py:175
msgid "Application title"
@@ -1572,39 +1573,39 @@ msgstr "Uygulama logosu"
#: paperless/models.py:197
msgid "Enables barcode scanning"
-msgstr ""
+msgstr "Barkod taramayı etkinleÅtirir"
#: paperless/models.py:203
msgid "Enables barcode TIFF support"
-msgstr ""
+msgstr "Barkod TIFF desteÄini etkinleÅtirir"
#: paperless/models.py:209
msgid "Sets the barcode string"
-msgstr ""
+msgstr "Barkod yazısını ayarlar"
#: paperless/models.py:217
msgid "Retains split pages"
-msgstr ""
+msgstr "BölünmüŠsayfaları korur"
#: paperless/models.py:223
msgid "Enables ASN barcode"
-msgstr ""
+msgstr "ASN barkodunu etkinleÅtirir"
#: paperless/models.py:229
msgid "Sets the ASN barcode prefix"
-msgstr ""
+msgstr "ASN barkod önekini ayarlar"
#: paperless/models.py:237
msgid "Sets the barcode upscale factor"
-msgstr ""
+msgstr "Barkod ölçeklendirme faktörünü ayarlar"
#: paperless/models.py:244
msgid "Sets the barcode DPI"
-msgstr ""
+msgstr "Barkod DPI deÄerini ayarlar"
#: paperless/models.py:251
msgid "Sets the maximum pages for barcode"
-msgstr ""
+msgstr "Barkod için maksimum sayfa sayısını ayarlar"
#: paperless/models.py:258
msgid "Enables tag barcode"
@@ -2048,7 +2049,7 @@ msgstr "eylem"
#: paperless_mail/models.py:253
msgid "action parameter"
-msgstr "eylem parametreleri"
+msgstr "eylem parametresi"
#: paperless_mail/models.py:258
msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots."
--
2.47.2
From be63c79db10cc52e8bbf3c7a63f99f123ad88c1f Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 13:22:39 -0700
Subject: [PATCH 09/16] Bump version to 2.18.1
---
pyproject.toml | 2 +-
src-ui/package.json | 2 +-
src-ui/src/environments/environment.prod.ts | 2 +-
src/paperless/version.py | 2 +-
uv.lock | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index fed4bacdc..dd39e5ed4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "paperless-ngx"
-version = "2.18.0"
+version = "2.18.1"
description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.10"
diff --git a/src-ui/package.json b/src-ui/package.json
index cc18ab629..01b1e5235 100644
--- a/src-ui/package.json
+++ b/src-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "paperless-ngx-ui",
- "version": "2.18.0",
+ "version": "2.18.1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"ng": "ng",
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index 97aeb385e..6d7bbcf62 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -6,7 +6,7 @@ export const environment = {
apiVersion: '9', // match src/paperless/settings.py
appTitle: 'Paperless-ngx',
tag: 'prod',
- version: '2.18.0',
+ version: '2.18.1',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
diff --git a/src/paperless/version.py b/src/paperless/version.py
index d67f02d37..25f5113be 100644
--- a/src/paperless/version.py
+++ b/src/paperless/version.py
@@ -1,6 +1,6 @@
from typing import Final
-__version__: Final[tuple[int, int, int]] = (2, 18, 0)
+__version__: Final[tuple[int, int, int]] = (2, 18, 1)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
diff --git a/uv.lock b/uv.lock
index 49dedf101..ea874357d 100644
--- a/uv.lock
+++ b/uv.lock
@@ -2006,7 +2006,7 @@ wheels = [
[[package]]
name = "paperless-ngx"
-version = "2.18.0"
+version = "2.18.1"
source = { virtual = "." }
dependencies = [
{ name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
--
2.47.2
From 5e6b49971ff18ab3ae716af922c6a0bafec442ad Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 17 Aug 2025 13:46:06 -0700
Subject: [PATCH 10/16] New Crowdin translations by GitHub Action (#10603)
Co-authored-by: Crowdin Bot
---
src/locale/tr_TR/LC_MESSAGES/django.po | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index 913a3b318..618e176bd 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-17 12:12\n"
+"PO-Revision-Date: 2025-08-17 20:45\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -1201,14 +1201,13 @@ msgstr "Oturum açmaya geri dön"
#: documents/templates/account/email/base_message.txt:1
#, python-format
msgid "Hello from %(site_name)s!"
-msgstr "%(site_name) uygulamasından merhaba."
+msgstr ""
#: documents/templates/account/email/base_message.txt:5
#, python-format
msgid "Thank you for using %(site_name)s!\n"
"%(site_domain)s"
-msgstr "%(site_name)s'i kullandıÄınız için teÅekkürler!\n"
-"%(site_domain)s"
+msgstr ""
#: documents/templates/account/login.html:5
msgid "Paperless-ngx sign in"
--
2.47.2
From 9225a38458e141c011eb7b512be9335ec6027a71 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 17 Aug 2025 14:18:29 -0700
Subject: [PATCH 11/16] Changelog v2.18.1 - GHA (#10605)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
---
docs/changelog.md | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/docs/changelog.md b/docs/changelog.md
index cc88e6909..5fd1b5f3f 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,31 @@
# Changelog
+## paperless-ngx 2.18.1
+
+### Features / Enhancements
+
+- Tweak: fix some button consistency [@shamoon](https://github.com/shamoon) ([#10593](https://github.com/paperless-ngx/paperless-ngx/pull/10593))
+- Fixhancement: mobile layout improvements for pdf editor [@shamoon](https://github.com/shamoon) ([#10588](https://github.com/paperless-ngx/paperless-ngx/pull/10588))
+
+### Bug Fixes
+
+- Fix: fix app logo validation with no file [@shamoon](https://github.com/shamoon) ([#10599](https://github.com/paperless-ngx/paperless-ngx/pull/10599))
+
+### Documentation
+
+- Documentation: fix filters docs [@shamoon](https://github.com/shamoon) ([#10600](https://github.com/paperless-ngx/paperless-ngx/pull/10600))
+
+### All App Changes
+
+
+4 changes
+
+- Fix: fix app logo validation with no file [@shamoon](https://github.com/shamoon) ([#10599](https://github.com/paperless-ngx/paperless-ngx/pull/10599))
+- Tweak: fix some button consistency [@shamoon](https://github.com/shamoon) ([#10593](https://github.com/paperless-ngx/paperless-ngx/pull/10593))
+- Development: restore version tag display [@shamoon](https://github.com/shamoon) ([#10592](https://github.com/paperless-ngx/paperless-ngx/pull/10592))
+- Fixhancement: mobile layout improvements for pdf editor [@shamoon](https://github.com/shamoon) ([#10588](https://github.com/paperless-ngx/paperless-ngx/pull/10588))
+
+
## paperless-ngx 2.18.0
### Notable Changes
--
2.47.2
From d5b87aeffb3ec34fe5e6a952da6ae5d4a30afeb9 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 17 Aug 2025 18:22:36 -0700
Subject: [PATCH 12/16] Enable Docker build for l10n_ branches in CI
---
.github/workflows/ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e042683de..acc36e5b5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -316,7 +316,7 @@ jobs:
build-docker-image:
name: Build Docker image for ${{ github.ref_name }}
runs-on: ubuntu-24.04
- if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || startsWith(github.ref, 'refs/heads/fix-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || contains(github.ref, 'beta.rc') || startsWith(github.ref, 'refs/tags/v'))
+ if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || startsWith(github.ref, 'refs/heads/fix-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || contains(github.ref, 'beta.rc') || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/l10n_'))
concurrency:
group: ${{ github.workflow }}-build-docker-image-${{ github.ref_name }}
cancel-in-progress: true
--
2.47.2
From 29c36542fa6478cca3d09ab141da647e5e734cbc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 18 Aug 2025 06:35:25 -0700
Subject: [PATCH 13/16] Chore(deps): Bump the development group across 1
directory with 3 updates (#10578)
Bumps the development group with 3 updates in the / directory: [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [pre-commit](https://github.com/pre-commit/pre-commit) and [ruff](https://github.com/astral-sh/ruff).
Updates `mkdocs-material` from 9.6.16 to 9.6.17
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.6.16...9.6.17)
Updates `pre-commit` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v4.2.0...v4.3.0)
Updates `ruff` from 0.12.8 to 0.12.9
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/0.12.8...0.12.9)
---
updated-dependencies:
- dependency-name: mkdocs-material
dependency-version: 9.6.17
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development
- dependency-name: pre-commit
dependency-version: 4.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: development
- dependency-name: ruff
dependency-version: 0.12.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
pyproject.toml | 2 +-
uv.lock | 61 +++++++++++++++++++++++++++-----------------------
2 files changed, 34 insertions(+), 29 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index dd39e5ed4..5a88510de 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -114,7 +114,7 @@ testing = [
]
lint = [
- "pre-commit~=4.2.0",
+ "pre-commit~=4.3.0",
"pre-commit-uv~=4.1.3",
"ruff~=0.12.2",
]
diff --git a/uv.lock b/uv.lock
index ea874357d..f79fc2e4f 100644
--- a/uv.lock
+++ b/uv.lock
@@ -1,5 +1,5 @@
version = 1
-revision = 2
+revision = 3
requires-python = ">=3.10"
resolution-markers = [
"python_full_version >= '3.11' and sys_platform == 'darwin'",
@@ -1687,11 +1687,12 @@ wheels = [
[[package]]
name = "mkdocs-material"
-version = "9.6.16"
+version = "9.6.17"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "backrefs", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
+ { name = "click", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "colorama", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "jinja2", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "markdown", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -1702,9 +1703,9 @@ dependencies = [
{ name = "pymdown-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/dd/84/aec27a468c5e8c27689c71b516fb5a0d10b8fca45b9ad2dd9d6e43bc4296/mkdocs_material-9.6.16.tar.gz", hash = "sha256:d07011df4a5c02ee0877496d9f1bfc986cfb93d964799b032dd99fe34c0e9d19", size = 4028828, upload-time = "2025-07-26T15:53:47.542Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/47/02/51115cdda743e1551c5c13bdfaaf8c46b959acc57ba914d8ec479dd2fe1f/mkdocs_material-9.6.17.tar.gz", hash = "sha256:48ae7aec72a3f9f501a70be3fbd329c96ff5f5a385b67a1563e5ed5ce064affe", size = 4032898, upload-time = "2025-08-15T16:09:21.412Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/65/f4/90ad67125b4dd66e7884e4dbdfab82e3679eb92b751116f8bb25ccfe2f0c/mkdocs_material-9.6.16-py3-none-any.whl", hash = "sha256:8d1a1282b892fe1fdf77bfeb08c485ba3909dd743c9ba69a19a40f637c6ec18c", size = 9223743, upload-time = "2025-07-26T15:53:44.236Z" },
+ { url = "https://files.pythonhosted.org/packages/3c/7c/0f0d44c92c8f3068930da495b752244bd59fd87b5b0f9571fa2d2a93aee7/mkdocs_material-9.6.17-py3-none-any.whl", hash = "sha256:221dd8b37a63f52e580bcab4a7e0290e4a6f59bd66190be9c3d40767e05f9417", size = 9229230, upload-time = "2025-08-15T16:09:18.301Z" },
]
[[package]]
@@ -2143,7 +2144,7 @@ typing = [
[package.metadata]
requires-dist = [
- { name = "babel", specifier = ">=2.17.0" },
+ { name = "babel", specifier = ">=2.17" },
{ name = "bleach", specifier = "~=6.2.0" },
{ name = "celery", extras = ["redis"], specifier = "~=5.5.1" },
{ name = "channels", specifier = "~=4.2" },
@@ -2215,7 +2216,7 @@ dev = [
{ name = "imagehash" },
{ name = "mkdocs-glightbox", specifier = "~=0.4.0" },
{ name = "mkdocs-material", specifier = "~=9.6.4" },
- { name = "pre-commit", specifier = "~=4.2.0" },
+ { name = "pre-commit", specifier = "~=4.3.0" },
{ name = "pre-commit-uv", specifier = "~=4.1.3" },
{ name = "pytest", specifier = "~=8.4.1" },
{ name = "pytest-cov", specifier = "~=6.2.1" },
@@ -2233,7 +2234,7 @@ docs = [
{ name = "mkdocs-material", specifier = "~=9.6.4" },
]
lint = [
- { name = "pre-commit", specifier = "~=4.2.0" },
+ { name = "pre-commit", specifier = "~=4.3.0" },
{ name = "pre-commit-uv", specifier = "~=4.1.3" },
{ name = "ruff", specifier = "~=0.12.2" },
]
@@ -2421,6 +2422,9 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024", size = 6645236, upload-time = "2025-07-01T09:14:23.321Z" },
{ url = "https://files.pythonhosted.org/packages/40/e7/848f69fb79843b3d91241bad658e9c14f39a32f71a301bcd1d139416d1be/pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809", size = 6086950, upload-time = "2025-07-01T09:14:25.237Z" },
{ url = "https://files.pythonhosted.org/packages/0b/1a/7cff92e695a2a29ac1958c2a0fe4c0b2393b60aac13b04a4fe2735cad52d/pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d", size = 6723358, upload-time = "2025-07-01T09:14:27.053Z" },
+ { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" },
+ { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" },
+ { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" },
{ url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" },
{ url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" },
{ url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" },
@@ -2496,7 +2500,7 @@ wheels = [
[[package]]
name = "pre-commit"
-version = "4.2.0"
+version = "4.3.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "cfgv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2505,9 +2509,9 @@ dependencies = [
{ name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "virtualenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424, upload-time = "2025-03-18T21:35:20.987Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/ff/29/7cf5bbc236333876e4b41f56e06857a87937ce4bf91e117a6991a2dbb02a/pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16", size = 193792, upload-time = "2025-08-09T18:56:14.651Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707, upload-time = "2025-03-18T21:35:19.343Z" },
+ { url = "https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8", size = 220965, upload-time = "2025-08-09T18:56:13.192Z" },
]
[[package]]
@@ -3249,24 +3253,25 @@ wheels = [
[[package]]
name = "ruff"
-version = "0.12.8"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/4b/da/5bd7565be729e86e1442dad2c9a364ceeff82227c2dece7c29697a9795eb/ruff-0.12.8.tar.gz", hash = "sha256:4cb3a45525176e1009b2b64126acf5f9444ea59066262791febf55e40493a033", size = 5242373, upload-time = "2025-08-07T19:05:47.268Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c9/1e/c843bfa8ad1114fab3eb2b78235dda76acd66384c663a4e0415ecc13aa1e/ruff-0.12.8-py3-none-linux_armv6l.whl", hash = "sha256:63cb5a5e933fc913e5823a0dfdc3c99add73f52d139d6cd5cc8639d0e0465513", size = 11675315, upload-time = "2025-08-07T19:05:06.15Z" },
- { url = "https://files.pythonhosted.org/packages/24/ee/af6e5c2a8ca3a81676d5480a1025494fd104b8896266502bb4de2a0e8388/ruff-0.12.8-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:9a9bbe28f9f551accf84a24c366c1aa8774d6748438b47174f8e8565ab9dedbc", size = 12456653, upload-time = "2025-08-07T19:05:09.759Z" },
- { url = "https://files.pythonhosted.org/packages/99/9d/e91f84dfe3866fa648c10512904991ecc326fd0b66578b324ee6ecb8f725/ruff-0.12.8-py3-none-macosx_11_0_arm64.whl", hash = "sha256:2fae54e752a3150f7ee0e09bce2e133caf10ce9d971510a9b925392dc98d2fec", size = 11659690, upload-time = "2025-08-07T19:05:12.551Z" },
- { url = "https://files.pythonhosted.org/packages/fe/ac/a363d25ec53040408ebdd4efcee929d48547665858ede0505d1d8041b2e5/ruff-0.12.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0acbcf01206df963d9331b5838fb31f3b44fa979ee7fa368b9b9057d89f4a53", size = 11896923, upload-time = "2025-08-07T19:05:14.821Z" },
- { url = "https://files.pythonhosted.org/packages/58/9f/ea356cd87c395f6ade9bb81365bd909ff60860975ca1bc39f0e59de3da37/ruff-0.12.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae3e7504666ad4c62f9ac8eedb52a93f9ebdeb34742b8b71cd3cccd24912719f", size = 11477612, upload-time = "2025-08-07T19:05:16.712Z" },
- { url = "https://files.pythonhosted.org/packages/1a/46/92e8fa3c9dcfd49175225c09053916cb97bb7204f9f899c2f2baca69e450/ruff-0.12.8-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb82efb5d35d07497813a1c5647867390a7d83304562607f3579602fa3d7d46f", size = 13182745, upload-time = "2025-08-07T19:05:18.709Z" },
- { url = "https://files.pythonhosted.org/packages/5e/c4/f2176a310f26e6160deaf661ef60db6c3bb62b7a35e57ae28f27a09a7d63/ruff-0.12.8-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:dbea798fc0065ad0b84a2947b0aff4233f0cb30f226f00a2c5850ca4393de609", size = 14206885, upload-time = "2025-08-07T19:05:21.025Z" },
- { url = "https://files.pythonhosted.org/packages/87/9d/98e162f3eeeb6689acbedbae5050b4b3220754554526c50c292b611d3a63/ruff-0.12.8-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:49ebcaccc2bdad86fd51b7864e3d808aad404aab8df33d469b6e65584656263a", size = 13639381, upload-time = "2025-08-07T19:05:23.423Z" },
- { url = "https://files.pythonhosted.org/packages/81/4e/1b7478b072fcde5161b48f64774d6edd59d6d198e4ba8918d9f4702b8043/ruff-0.12.8-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ac9c570634b98c71c88cb17badd90f13fc076a472ba6ef1d113d8ed3df109fb", size = 12613271, upload-time = "2025-08-07T19:05:25.507Z" },
- { url = "https://files.pythonhosted.org/packages/e8/67/0c3c9179a3ad19791ef1b8f7138aa27d4578c78700551c60d9260b2c660d/ruff-0.12.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:560e0cd641e45591a3e42cb50ef61ce07162b9c233786663fdce2d8557d99818", size = 12847783, upload-time = "2025-08-07T19:05:28.14Z" },
- { url = "https://files.pythonhosted.org/packages/4e/2a/0b6ac3dd045acf8aa229b12c9c17bb35508191b71a14904baf99573a21bd/ruff-0.12.8-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:71c83121512e7743fba5a8848c261dcc454cafb3ef2934a43f1b7a4eb5a447ea", size = 11702672, upload-time = "2025-08-07T19:05:30.413Z" },
- { url = "https://files.pythonhosted.org/packages/9d/ee/f9fdc9f341b0430110de8b39a6ee5fa68c5706dc7c0aa940817947d6937e/ruff-0.12.8-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:de4429ef2ba091ecddedd300f4c3f24bca875d3d8b23340728c3cb0da81072c3", size = 11440626, upload-time = "2025-08-07T19:05:32.492Z" },
- { url = "https://files.pythonhosted.org/packages/89/fb/b3aa2d482d05f44e4d197d1de5e3863feb13067b22c571b9561085c999dc/ruff-0.12.8-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a2cab5f60d5b65b50fba39a8950c8746df1627d54ba1197f970763917184b161", size = 12462162, upload-time = "2025-08-07T19:05:34.449Z" },
- { url = "https://files.pythonhosted.org/packages/18/9f/5c5d93e1d00d854d5013c96e1a92c33b703a0332707a7cdbd0a4880a84fb/ruff-0.12.8-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:45c32487e14f60b88aad6be9fd5da5093dbefb0e3e1224131cb1d441d7cb7d46", size = 12913212, upload-time = "2025-08-07T19:05:36.541Z" },
+version = "0.12.9"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/4a/45/2e403fa7007816b5fbb324cb4f8ed3c7402a927a0a0cb2b6279879a8bfdc/ruff-0.12.9.tar.gz", hash = "sha256:fbd94b2e3c623f659962934e52c2bea6fc6da11f667a427a368adaf3af2c866a", size = 5254702, upload-time = "2025-08-14T16:08:55.2Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/ad/20/53bf098537adb7b6a97d98fcdebf6e916fcd11b2e21d15f8c171507909cc/ruff-0.12.9-py3-none-linux_armv6l.whl", hash = "sha256:fcebc6c79fcae3f220d05585229463621f5dbf24d79fdc4936d9302e177cfa3e", size = 11759705, upload-time = "2025-08-14T16:08:12.968Z" },
+ { url = "https://files.pythonhosted.org/packages/20/4d/c764ee423002aac1ec66b9d541285dd29d2c0640a8086c87de59ebbe80d5/ruff-0.12.9-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:aed9d15f8c5755c0e74467731a007fcad41f19bcce41cd75f768bbd687f8535f", size = 12527042, upload-time = "2025-08-14T16:08:16.54Z" },
+ { url = "https://files.pythonhosted.org/packages/8b/45/cfcdf6d3eb5fc78a5b419e7e616d6ccba0013dc5b180522920af2897e1be/ruff-0.12.9-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5b15ea354c6ff0d7423814ba6d44be2807644d0c05e9ed60caca87e963e93f70", size = 11724457, upload-time = "2025-08-14T16:08:18.686Z" },
+ { url = "https://files.pythonhosted.org/packages/72/e6/44615c754b55662200c48bebb02196dbb14111b6e266ab071b7e7297b4ec/ruff-0.12.9-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d596c2d0393c2502eaabfef723bd74ca35348a8dac4267d18a94910087807c53", size = 11949446, upload-time = "2025-08-14T16:08:21.059Z" },
+ { url = "https://files.pythonhosted.org/packages/fd/d1/9b7d46625d617c7df520d40d5ac6cdcdf20cbccb88fad4b5ecd476a6bb8d/ruff-0.12.9-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1b15599931a1a7a03c388b9c5df1bfa62be7ede6eb7ef753b272381f39c3d0ff", size = 11566350, upload-time = "2025-08-14T16:08:23.433Z" },
+ { url = "https://files.pythonhosted.org/packages/59/20/b73132f66f2856bc29d2d263c6ca457f8476b0bbbe064dac3ac3337a270f/ruff-0.12.9-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3d02faa2977fb6f3f32ddb7828e212b7dd499c59eb896ae6c03ea5c303575756", size = 13270430, upload-time = "2025-08-14T16:08:25.837Z" },
+ { url = "https://files.pythonhosted.org/packages/a2/21/eaf3806f0a3d4c6be0a69d435646fba775b65f3f2097d54898b0fd4bb12e/ruff-0.12.9-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:17d5b6b0b3a25259b69ebcba87908496e6830e03acfb929ef9fd4c58675fa2ea", size = 14264717, upload-time = "2025-08-14T16:08:27.907Z" },
+ { url = "https://files.pythonhosted.org/packages/d2/82/1d0c53bd37dcb582b2c521d352fbf4876b1e28bc0d8894344198f6c9950d/ruff-0.12.9-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:72db7521860e246adbb43f6ef464dd2a532ef2ef1f5dd0d470455b8d9f1773e0", size = 13684331, upload-time = "2025-08-14T16:08:30.352Z" },
+ { url = "https://files.pythonhosted.org/packages/3b/2f/1c5cf6d8f656306d42a686f1e207f71d7cebdcbe7b2aa18e4e8a0cb74da3/ruff-0.12.9-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a03242c1522b4e0885af63320ad754d53983c9599157ee33e77d748363c561ce", size = 12739151, upload-time = "2025-08-14T16:08:32.55Z" },
+ { url = "https://files.pythonhosted.org/packages/47/09/25033198bff89b24d734e6479e39b1968e4c992e82262d61cdccaf11afb9/ruff-0.12.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fc83e4e9751e6c13b5046d7162f205d0a7bac5840183c5beebf824b08a27340", size = 12954992, upload-time = "2025-08-14T16:08:34.816Z" },
+ { url = "https://files.pythonhosted.org/packages/52/8e/d0dbf2f9dca66c2d7131feefc386523404014968cd6d22f057763935ab32/ruff-0.12.9-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:881465ed56ba4dd26a691954650de6ad389a2d1fdb130fe51ff18a25639fe4bb", size = 12899569, upload-time = "2025-08-14T16:08:36.852Z" },
+ { url = "https://files.pythonhosted.org/packages/a0/bd/b614d7c08515b1428ed4d3f1d4e3d687deffb2479703b90237682586fa66/ruff-0.12.9-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:43f07a3ccfc62cdb4d3a3348bf0588358a66da756aa113e071b8ca8c3b9826af", size = 11751983, upload-time = "2025-08-14T16:08:39.314Z" },
+ { url = "https://files.pythonhosted.org/packages/58/d6/383e9f818a2441b1a0ed898d7875f11273f10882f997388b2b51cb2ae8b5/ruff-0.12.9-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:07adb221c54b6bba24387911e5734357f042e5669fa5718920ee728aba3cbadc", size = 11538635, upload-time = "2025-08-14T16:08:41.297Z" },
+ { url = "https://files.pythonhosted.org/packages/20/9c/56f869d314edaa9fc1f491706d1d8a47747b9d714130368fbd69ce9024e9/ruff-0.12.9-py3-none-musllinux_1_2_i686.whl", hash = "sha256:f5cd34fabfdea3933ab85d72359f118035882a01bff15bd1d2b15261d85d5f66", size = 12534346, upload-time = "2025-08-14T16:08:43.39Z" },
+ { url = "https://files.pythonhosted.org/packages/bd/4b/d8b95c6795a6c93b439bc913ee7a94fda42bb30a79285d47b80074003ee7/ruff-0.12.9-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:f6be1d2ca0686c54564da8e7ee9e25f93bdd6868263805f8c0b8fc6a449db6d7", size = 13017021, upload-time = "2025-08-14T16:08:45.889Z" },
]
[[package]]
--
2.47.2
From 217b004884fe0c29a1102533db50801ea9cafc6c Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Mon, 18 Aug 2025 08:08:25 -0700
Subject: [PATCH 14/16] Fix: ensure saved view count is visible with long names
(#10616)
---
.../components/app-frame/app-frame.component.html | 13 +++++++------
.../components/app-frame/app-frame.component.scss | 4 ++++
2 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html
index abf47d459..faf55b802 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.html
+++ b/src-ui/src/app/components/app-frame/app-frame.component.html
@@ -108,15 +108,16 @@
-
- {{view.name}}
- @if (showSidebarCounts && !slimSidebarEnabled) {
- {{ savedViewService.getDocumentCount(view) }}
- }
-
+
+ {{view.name}}
+ @if (showSidebarCounts && !slimSidebarEnabled) {
+ {{ savedViewService.getDocumentCount(view) }}
+ }
+
@if (showSidebarCounts && slimSidebarEnabled) {
{{ savedViewService.getDocumentCount(view) }}
}
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.scss b/src-ui/src/app/components/app-frame/app-frame.component.scss
index e493f369d..9bd8738ff 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.scss
+++ b/src-ui/src/app/components/app-frame/app-frame.component.scss
@@ -19,6 +19,10 @@
height: 0.8em;
}
+ .view-name {
+ max-width: calc(100% - 50px)
+ }
+
.nav-group:not(:has(.app-link)) .sidebar-heading {
display: none !important;
}
--
2.47.2
From 349fbce5799783b93ac3a3d70f645dee89a0ccce Mon Sep 17 00:00:00 2001
From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 18 Aug 2025 15:10:11 +0000
Subject: [PATCH 15/16] Auto translate strings
---
src-ui/messages.xlf | 82 ++++++++++++++++++++++-----------------------
1 file changed, 41 insertions(+), 41 deletions(-)
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 4fec612b8..8001d145b 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -363,11 +363,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
@@ -658,11 +658,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
@@ -995,11 +995,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1579,11 +1579,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
@@ -1977,11 +1977,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
@@ -2334,11 +2334,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
@@ -2675,11 +2675,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
@@ -2697,36 +2697,36 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2737,11 +2737,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -2772,11 +2772,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2787,11 +2787,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2802,11 +2802,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -2821,11 +2821,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -2836,71 +2836,71 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
--
2.47.2
From 5d30f4fe2bbca8c07ddd652cc17f2f3475ee3fbc Mon Sep 17 00:00:00 2001
From: Crowdin Bot
Date: Wed, 20 Aug 2025 12:14:14 +0000
Subject: [PATCH 16/16] New Crowdin translations by GitHub Action
---
src-ui/src/locale/messages.af_ZA.xlf | 82 ++++----
src-ui/src/locale/messages.ar_AR.xlf | 82 ++++----
src-ui/src/locale/messages.be_BY.xlf | 82 ++++----
src-ui/src/locale/messages.bg_BG.xlf | 82 ++++----
src-ui/src/locale/messages.ca_ES.xlf | 82 ++++----
src-ui/src/locale/messages.cs_CZ.xlf | 122 ++++++------
src-ui/src/locale/messages.da_DK.xlf | 82 ++++----
src-ui/src/locale/messages.de_DE.xlf | 86 ++++----
src-ui/src/locale/messages.el_GR.xlf | 82 ++++----
src-ui/src/locale/messages.es_ES.xlf | 82 ++++----
src-ui/src/locale/messages.et_EE.xlf | 82 ++++----
src-ui/src/locale/messages.fa_IR.xlf | 82 ++++----
src-ui/src/locale/messages.fi_FI.xlf | 82 ++++----
src-ui/src/locale/messages.fr_FR.xlf | 82 ++++----
src-ui/src/locale/messages.he_IL.xlf | 82 ++++----
src-ui/src/locale/messages.hr_HR.xlf | 82 ++++----
src-ui/src/locale/messages.hu_HU.xlf | 82 ++++----
src-ui/src/locale/messages.id_ID.xlf | 82 ++++----
src-ui/src/locale/messages.it_IT.xlf | 82 ++++----
src-ui/src/locale/messages.ja_JP.xlf | 82 ++++----
src-ui/src/locale/messages.ko_KR.xlf | 82 ++++----
src-ui/src/locale/messages.lb_LU.xlf | 82 ++++----
src-ui/src/locale/messages.lt_LT.xlf | 82 ++++----
src-ui/src/locale/messages.lv_LV.xlf | 82 ++++----
src-ui/src/locale/messages.ms_MY.xlf | 82 ++++----
src-ui/src/locale/messages.nl_NL.xlf | 82 ++++----
src-ui/src/locale/messages.no_NO.xlf | 82 ++++----
src-ui/src/locale/messages.pl_PL.xlf | 82 ++++----
src-ui/src/locale/messages.pt_BR.xlf | 82 ++++----
src-ui/src/locale/messages.pt_PT.xlf | 82 ++++----
src-ui/src/locale/messages.ro_RO.xlf | 82 ++++----
src-ui/src/locale/messages.ru_RU.xlf | 122 ++++++------
src-ui/src/locale/messages.sk_SK.xlf | 82 ++++----
src-ui/src/locale/messages.sl_SI.xlf | 82 ++++----
src-ui/src/locale/messages.sr_CS.xlf | 118 +++++------
src-ui/src/locale/messages.sv_SE.xlf | 82 ++++----
src-ui/src/locale/messages.th_TH.xlf | 82 ++++----
src-ui/src/locale/messages.tr_TR.xlf | 262 ++++++++++++-------------
src-ui/src/locale/messages.uk_UA.xlf | 82 ++++----
src-ui/src/locale/messages.vi_VN.xlf | 84 ++++----
src-ui/src/locale/messages.zh_CN.xlf | 82 ++++----
src-ui/src/locale/messages.zh_TW.xlf | 82 ++++----
src/locale/cs_CZ/LC_MESSAGES/django.po | 13 +-
src/locale/de_DE/LC_MESSAGES/django.po | 2 +-
src/locale/ru_RU/LC_MESSAGES/django.po | 10 +-
src/locale/sr_CS/LC_MESSAGES/django.po | 2 +-
src/locale/tr_TR/LC_MESSAGES/django.po | 7 +-
src/locale/vi_VN/LC_MESSAGES/django.po | 2 +-
48 files changed, 1892 insertions(+), 1890 deletions(-)
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index 7bfd14af7..a93b282d8 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Instellings
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logboeke
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Lêertake
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Gebruikers & Groepe
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentasie
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Open dokumente
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Sluit alles
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Bestuur
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-pos
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is beskikbaar.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klik om te bekyk.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx kan outomaties na bywerkings soek
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Hoe werk dit?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Bywerking beskikbaar
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 188d35c6a..83097ca46 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯Ø§Øª
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Ø§ÙØ³Ø¬Ùات
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Ù
Ù٠اÙÙ
ÙØ§Ù
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Ø³ÙØ© اÙÙ
ÙÙ
ÙØ§Øª
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
اÙÙ
ستخدÙ
ÙÙ & اÙÙ
جÙ
ÙØ¹Ø§Øª
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
اÙÙØ«Ø§Ø¦Ù
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
ÙØªØ اÙÙ
Ø³ØªÙØ¯Ø§Øª
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Ø¥ØºÙØ§Ù اÙÙÙ
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
إدارة
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Ø§ÙØ¨Ø±Ùد
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Ø§ÙØ¥Ø¯Ø§Ø±Ø©
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Ø§ÙØªÙÙØ¦Ø©
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
Github
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
Ù
تÙÙØ±.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
اÙÙØ± ÙÙØ¹Ø±Ø¶.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx ÙØªØÙ٠تÙÙØ§Ø¦Ùا٠Ù
Ù ÙØ¬Ùد ØªØØ¯Ùثات
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
ÙÙÙ ÙØ¹Ù
Ù ÙØ°Ø§Ø
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ÙØªÙÙØ± ØªØØ¯ÙØ«
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index a24d161a5..cb6300bb8 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ÐаладкÑ
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
ÐогÑ
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ФайлавÑÑ Ð·Ð°Ð´Ð°ÑÑ
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ÐакÑменÑаÑÑÑ
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
ÐдкÑÑÑÑ Ð´Ð°ÐºÑменÑÑ
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÐакÑÑÑÑ ÑÑÑ
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ÐÑÑаванне
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
даÑÑÑпна.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ÐаÑÑÑнÑÑе, каб ÑбаÑÑÑÑ.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx можа аÑÑамаÑÑÑна пÑавÑÑаÑÑ Ð½Ð°ÑÑнаÑÑÑ Ð°Ð±Ð½Ð°ÑленнÑÑ
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Як гÑÑа пÑаÑÑе?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ÐаÑÑÑпна абнаÑленне
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index 3ae55e1bc..5e1d065fd 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ÐаÑÑÑойки
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
ÐневниÑи
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Файлови задаÑи
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
ÐоÑÑе
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ÐоÑÑебиÑели & ÐÑÑпи
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ÐокÑменÑаÑиÑ
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
ÐÑвоÑени докÑменÑи
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÐаÑвоÑи вÑиÑки
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
УпÑавление
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
ÐоÑа
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
ÐдминиÑÑÑаÑиÑ
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
ÐонÑигÑÑаÑиÑ
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
е налиÑно.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ÐаÑиÑни за пÑеглед.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx може авÑомаÑиÑно да пÑовеÑÑва за акÑÑализаÑии
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Ðак ÑабоÑи Ñова?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ÐалиÑна акÑÑализаÑиÑ
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index 1029dc96e..2e29ee3f1 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Opcions
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Registres
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tasques d'arxiu
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Brossa
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Usuaris i grups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentació
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Obre document
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Tanca-ho tot
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Gestiona
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Correu
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administració
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuració
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
està disponible.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Cliqueu per veure.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx pot cercar actualitzacions automà ticament
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Com funciona?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Actualització disponible
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 31121ebdb..11f558894 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
NastavenÃ
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Záznamy
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1120,7 +1120,7 @@
src/app/components/admin/settings/settings.component.html
179
- Show document counts in sidebar saved views
+ Zobrazit poÄty dokumentů u uložených pohledů v postrannÃm panelu
Document editing
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Ãlohy souborů
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Koš
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Uživatelé a skupiny
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentace
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
OtevÅené dokumenty
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ZavÅÃt vÅ¡e
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Správa
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Pošta
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administrace
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfigurace
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
je k dispozici.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
KliknÄte pro zobrazenÃ.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx umà automaticky kontrolovat aktualizace
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Jak to funguje?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Je dostupná aktualizace
@@ -5998,7 +5998,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ Vybrat všechny stránky
Deselect all pages
@@ -6006,7 +6006,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ ZruÅ¡it výbÄr vÅ¡ech stránek
Rotate selected pages counter-clockwise
@@ -6014,7 +6014,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ OtoÄit vybrané stránky proti smÄru hodinových ruÄiÄek
Rotate selected pages clockwise
@@ -6022,7 +6022,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ OtoÄit vybrané stránky ve smÄru hodinových ruÄiÄek
Delete selected pages
@@ -6030,7 +6030,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ Smazat vybrané stránky
Rotate page counter-clockwise
@@ -6038,7 +6038,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ OtoÄit stránku proti smÄru hodinových ruÄiÄek
Rotate page clockwise
@@ -6046,7 +6046,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ OtoÄit stránku ve smÄru hodinových ruÄiÄek
Delete page
@@ -6054,7 +6054,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Smazat stránku
Add / remove document split here
@@ -6062,7 +6062,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ PÅidat / odebrat rozdÄlenà dokumentu zde
Split here
@@ -6070,7 +6070,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ RozdÄlit zde
Create new document(s)
@@ -6078,7 +6078,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ VytvoÅit dokument (dokumenty)
Update existing document
@@ -6086,7 +6086,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ Aktualizovat existujÃcà dokument
Copy metadata
@@ -6094,7 +6094,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ KopÃrovat metadata
Delete original
@@ -6102,7 +6102,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Delete original
+ Smazat originál
Merge with existing permissions
@@ -7192,7 +7192,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ z
-
@@ -7252,7 +7252,7 @@
src/app/components/document-detail/document-detail.component.ts
1359
- PDF Editor
+ PDF editor
Send
@@ -7800,7 +7800,7 @@
src/app/components/document-detail/document-detail.component.ts
1378
- PDF edit operation for "" will begin in the background.
+ Operace editace PDF pro "" bude zahájena na pozadÃ.
Error executing PDF edit operation
@@ -7808,7 +7808,7 @@
src/app/components/document-detail/document-detail.component.ts
1390
- Error executing PDF edit operation
+ Chyba pÅi provádÄnà operace editace PDF
An error occurred loading tiff:
@@ -10944,7 +10944,7 @@
src/app/services/settings.service.ts
249
- Vietnamese
+ Vietnamština
Chinese Simplified
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 095ec4f0f..11676f9d6 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Indstillinger
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logninger
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Ã
bn dokumenter
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Luk alle
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Administrér
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
er tilgængelig.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klik for at se.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Opdatering tilgængelig
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index d768a95ae..2b08e35f8 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Einstellungen
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Protokolle
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Dateiaufgaben
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Papierkorb
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Benutzer & Gruppen
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Geöffnete Dokumente
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Alle schlieÃen
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Verwaltung
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfiguration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
ist verfügbar.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Zum Anzeigen klicken.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx kann automatisch auf Aktualisierungen überprüfen
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Wie funktioniert das?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Aktualisierung verfügbar
@@ -6078,7 +6078,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Neues Dokument(e) erstellen
+ Neue(s) Dokument(e) erstellen
Update existing document
@@ -7252,7 +7252,7 @@
src/app/components/document-detail/document-detail.component.ts
1359
- PDF Editor
+ PDF-Editor
Send
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index ce803397b..709c9f38e 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ΡÏ
θμίÏειÏ
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
ÎÏÏεία ÎαÏαγÏαÏήÏ
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ÎÏγαÏÎ¯ÎµÏ ÎÏÏείÏν
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
ÎÎ¬Î´Î¿Ï Î±ÏοÏÏιμμάÏÏν
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ΧÏήÏÏÎµÏ & ÎμάδεÏ
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ΤεκμηÏίÏÏη
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Îνοιγμα εγγÏάÏÏν
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÎλείÏιμο ÏλÏν
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ÎιαÏείÏιÏη
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
ÎλληλογÏαÏία
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
είναι διαθÎÏιμο.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Îάνε κλικ για ÏÏοβολή.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Το Paperless-ngx μÏοÏεί να ελÎγξει αÏ
ÏÏμαÏα για ενημεÏÏÏειÏ
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Î ÏÏ Î»ÎµÎ¹ÏοÏ
Ïγεί;
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Î¥ÏάÏÏει διαθÎÏιμη ενημÎÏÏÏη
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index bb3c79238..77d1bd871 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Ajustes
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Registros
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tareas de archivo
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Papelera
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Usuarios & Grupos
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentación
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Abrir documentos
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Cerrar todos
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Organizar
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Correo
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administración
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuración
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
está disponible.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Haz clic para ver.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx puede comprobar automáticamente si hay actualizaciones
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
¿Cómo funciona?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Actualización disponible
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index e6802d98c..71c9a1da6 100644
--- a/src-ui/src/locale/messages.et_EE.xlf
+++ b/src-ui/src/locale/messages.et_EE.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Settings
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logs
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Open documents
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Close all
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Manage
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is available.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Click to view.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Update available
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index 9151f7f50..ae215ceab 100644
--- a/src-ui/src/locale/messages.fa_IR.xlf
+++ b/src-ui/src/locale/messages.fa_IR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ØªÙØ¸ÛÙ
ات
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Ø³ÛØ§ÙÙ ÙØ§
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ÙØ¸Ø§Û٠پرÙÙØ¯Ù
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
زباÙÙ
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Ù
Ø³ØªÙØ¯ سازÛ
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Ø§Ø³ÙØ§Ø¯ باز
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÙÙ
٠را Ø¨Ø¨ÙØ¯Ûد
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Ù
Ø¯ÛØ±Ûت کردÙ
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
پست
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
تجÙÛØ²
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Ù¾ÛÚ©Ø±Ø¨ÙØ¯Û
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
ÙÙØ¨
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
Ù
ÙØ¬Ùد است
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Ø¨Ø±Ø§Û Ù
Ø´Ø§ÙØ¯Ù Ú©ÙÛÚ© Ú©ÙÛØ¯
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-NGX Ø¨Ù Ø·ÙØ± Ø®ÙØ¯Ú©Ø§Ø± Ù
Û ØªÙØ§Ùد Ø¨Ù Ø±ÙØ²Ø±Ø³Ø§ÙÛ ÙØ§ را Ø¨Ø±Ø±Ø³Û Ú©ÙØ¯
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
اÛÙ ÚÚ¯ÙÙ٠کار Ù
Û Ú©ÙØ¯Ø
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Ø¨Ù Ø±ÙØ² رساÙÛ Ù
ÙØ¬Ùد است
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index d3b3ee4c0..f723a7ed2 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Asetukset
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Lokit
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tiedostotehtävät
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Käyttäjät & ryhmät
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentaatio
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Avaa asiakirjat
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Sulje kaikki
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Hallitse
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Sähköposti
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Ylläpito
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
on saatavilla.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Näytä klikkaamalla.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx voi tarkistaa päivitykset automaattisesti
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Kuinka tämä toimii?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Päivitys saatavilla
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index cac14304b..2dd1569c2 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Paramètres
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Journaux
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tâches sur les fichiers
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Corbeille
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Utilisateurs & Groupes
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Documents ouverts
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Tout fermer
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Gestion
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Courriel
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
est disponible.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Cliquer pour visualiser.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Comment ça fonctionne ?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Mise à jour disponible
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index c5426f94b..cbcbc499c 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
×××ר×ת
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
×××× × ×¨×ש××
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
×ש×××ת ×§×צ××
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
×שפ×
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
×שת×ש×× & ×§××צ×ת
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ת××¢××
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
×ס×××× ×¤×ª××××
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ס××ר ×××
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
× ××
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
×××ר
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
× ××××
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
×××ר×ת
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
××××.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
×××¥ ××צ××.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx ×××× ×××××§ ×××××××ת ×× ×ש ×¢×××× ××
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
××× ×× ×¢×××?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
×§××× ×¢××××
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 1819f81bc..0016f3fdf 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Postavke
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Zapisnici
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Zadaci datoteke
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentacija
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Otvoreni dokumenti
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Zatvori sve
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Upravljaj
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
je dostupno.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klikni za prikaz.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx može automatski provjeriti aktualizaciju
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Kako ovo radi?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Dostupno ažuriranje
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index 7e57bdd71..c6849546b 100644
--- a/src-ui/src/locale/messages.hu_HU.xlf
+++ b/src-ui/src/locale/messages.hu_HU.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
BeállÃtások
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Naplók
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Fájl feladatok
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Lomtár
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Felhasználók & Csoportok
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentáció
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Dokumentumok megnyitása
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Bezár mindent
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Kezelés
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Adminisztráció
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
BeállÃtások
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
rendelkezésre áll.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Kattintson a megtekintéshez.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
A Paperless-ngx automatikusan ellenÅrizni tudja a frissÃtéseket
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Hogyan működik ez?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
FrissÃtés elérhetÅ
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index 177c7f984..ec6bdf1b0 100644
--- a/src-ui/src/locale/messages.id_ID.xlf
+++ b/src-ui/src/locale/messages.id_ID.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Pengaturan
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Log
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tugas File
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Sampah
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentasi
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Buka dokumen
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Tutup semua
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Kelola
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Surel
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administrasi
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfigurasi
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
telah tersedia.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Ketuk untuk melihat.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx dapat secara otomatis memeriksa pembaruan
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Bagaimana ini dapat bekerja?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Pembaruan tersedia
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index fc97e4b1a..f0f84622d 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Impostazioni
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Log
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Attività File
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Cestino
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Utenti & gruppi
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentazione
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Apri documenti
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Chiudi tutti
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Gestisci
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Amministrazione
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configurazione
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
è disponibile.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Clicca per visualizzare.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx può controllare automaticamente la presenza di aggiornamenti
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Come funziona?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Aggiornamento disponibile
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index b7f3b168a..93feb11ec 100644
--- a/src-ui/src/locale/messages.ja_JP.xlf
+++ b/src-ui/src/locale/messages.ja_JP.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ã·ã¹ãã è¨å®
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
ãã°
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ãã¡ã¤ã«ã¿ã¹ã¯
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
ãã¿ç®±
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ã¦ã¼ã¶ã¼ & ã°ã«ã¼ã
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ããã¥ã¢ã«
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
éãã¦ããããã¥ã¡ã³ã
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ãã¹ã¦éãã
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ããã¥ã¡ã³ã管ç
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
ã¡ã¼ã«
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
ã·ã¹ãã 管ç
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
è¨å®
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
ãå©ç¨å¯è½ã§ãã
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ã¯ãªãã¯ãã¦è¡¨ç¤º
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngxã¯èªåçã«ã¢ãããã¼ãã確èªã§ãã¾ã
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
ã¢ãããã¼ãã®èªåç¢ºèªæ©è½ã«ã¤ãã¦
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ã¢ãããã¼ããããã¾ãã
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index b8c992801..942a78932 100644
--- a/src-ui/src/locale/messages.ko_KR.xlf
+++ b/src-ui/src/locale/messages.ko_KR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ì¤ì
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
ë¡ê·¸
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
1
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
í´ì§íµ
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ì¬ì©ì & 그룹
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
문ì
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
문ì ì´ê¸°
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
모ë ë«ê¸°
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ê´ë¦¬
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
ë©ì¼
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
ê´ë¦¬
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
íê²½ì¤ì
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
Github
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
ì¬ì© ê°ë¥í¨
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
í´ë¦í´ì 보기.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngxë ìëì¼ë¡ ìµì ì
ë°ì´í¸ë¥¼ íì¸í ì ììµëë¤.
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
ì´ë»ê² ìëí ê¹ì?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ì
ë°ì´í¸ ê°ë¥
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index a506bbac4..ac7471e83 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Astellungen
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Protokoller
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Datei Jobs
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentatioun
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Oppen Dokumenter
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
All zoumaachen
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Verwalten
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
ass disponibel.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klicke fir unzeweisen.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Update disponibel
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 4f19fefc3..681f530c9 100644
--- a/src-ui/src/locale/messages.lt_LT.xlf
+++ b/src-ui/src/locale/messages.lt_LT.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Nustatymai
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Žurnalai
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Open documents
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Close all
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Manage
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is available.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Click to view.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Update available
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index 3364b9919..f227c8ef6 100644
--- a/src-ui/src/locale/messages.lv_LV.xlf
+++ b/src-ui/src/locale/messages.lv_LV.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Iestatījumi
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Notikumu žurnÄli
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
DokumentÄcija
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
AtvÄrt dokumentus
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
AizvÄrt visu
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
PÄrvaldÄ«t
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Pasts
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
AdministrÄcija
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
KonfigurÄcija
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is available.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Click to view.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Pieejams atjauninÄjums
diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf
index 0501eae7e..aacb7a0d5 100644
--- a/src-ui/src/locale/messages.ms_MY.xlf
+++ b/src-ui/src/locale/messages.ms_MY.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Settings
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logs
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Users & Groups
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Open documents
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Close all
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Manage
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is available.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Click to view.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
How does this work?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Update available
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 14e7f96f3..2474e967f 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Instellingen
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logbestanden
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Bestandstaken
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Prullenbak
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Gebruikers & groepen
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Handleiding
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Open documenten
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Alles sluiten
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Beheren
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Beheer
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuratie
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
is beschikbaar.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klik om te bekijken.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx kan automatisch controleren op updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Hoe werkt dit?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Update beschikbaar
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index bb6072628..f20e46640 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Innstillinger
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logger
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Fil oppgaver
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Papirkurv
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Brukere & Grupper
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentasjon
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Ã
pne dokumenter
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Lukk alle
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Behandle
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-post
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administrasjon
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfigurasjon
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
er tilgjengelig.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klikk for å se.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx kan automatisk sjekke etter oppdateringer
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Hvordan fungerer dette?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Oppdatering er tilgjengelig
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index aeca3dea6..079656182 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Ustawienia
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Dziennik
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Operacje na plikach
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Kosz
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Użytkownicy i Grupy
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentacja
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Otwarte dokumenty
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Zamknij wszystkie
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ZarzÄ
dzaj
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Poczta
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administracja
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfiguracja
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
jest dostÄpny.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Kliknij, aby zobaczyÄ.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx może automatycznie sprawdzaÄ dostÄpnoÅÄ aktualizacji
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Jak to dziaÅa?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Aktualizacja jest dostÄpna
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index fc9b693ea..0d31bddf9 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Configurações
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logs
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tarefas de Arquivo
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Lixeira
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Usuários & Grupos
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentação
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Abrir documentos
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Fechar todos
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Gerenciar
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administração
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Personalização
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
está disponÃvel.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Clique para visualizar.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx pode verificar atualizações automaticamente
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Como isto funciona?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Atualização disponÃvel
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 629b41b18..fb43ff4cd 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Configurações
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Registos
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tarefas de Ficheiro
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Reciclagem
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Utilizadores e Grupos
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Documentação
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Abrir documentos
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Fechar todos
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Gerir
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Email
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administração
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Customizações
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
Github
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
está disponÃvel.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Clique para ver.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
O Paperless-ngx pode verificar automaticamente por atualizações
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Como é que isto funciona?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Atualização disponÃvel
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 7196f005d..72b5ee614 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
SetÄri
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Jurnale
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
File Tasks
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Utilizatori & Grupuri
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
DocumentaÈie
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Deschide documente
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Ãnchide tot
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
AdministreazÄ
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administrare
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
este disponibilÄ.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Click pentru a vizualiza.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Sistemul poate verifica automat actualizÄrile
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Cum funcÅ£ioneazÄ?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Actualizare disponibilÄ
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 3f73fb594..d3c57c8ea 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ÐаÑÑÑойки
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Ðоги
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1120,7 +1120,7 @@
src/app/components/admin/settings/settings.component.html
179
- Show document counts in sidebar saved views
+ ÐоказÑваÑÑ ÐºÐ¾Ð»Ð¸ÑеÑÑво докÑменÑов в боковой панели ÑоÑ
ÑаненнÑÑ
пÑоÑмоÑÑов
Document editing
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ФайловÑе задаÑи
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
ÐоÑзина
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ÐолÑзоваÑели и гÑÑппÑ
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ÐокÑменÑаÑиÑ
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
ÐÑкÑÑÑÑ Ð´Ð¾ÐºÑменÑÑ
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÐакÑÑÑÑ Ð²ÑÑ
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
УпÑавление
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
ÐоÑÑа
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
ÐдминиÑÑÑиÑование
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
ÐонÑигÑÑаÑиÑ
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
доÑÑÑпно.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ÐажмиÑе Ð´Ð»Ñ Ð¿ÑоÑмоÑÑа.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx Ð¼Ð¾Ð¶ÐµÑ Ð°Ð²ÑомаÑиÑеÑки пÑовеÑÑÑÑ Ð½Ð°Ð»Ð¸Ñие обновлений
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Ðак ÑÑо ÑабоÑаеÑ?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ÐоÑÑÑпно обновление
@@ -5998,7 +5998,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ ÐÑбÑаÑÑ Ð²Ñе ÑÑÑаниÑÑ
Deselect all pages
@@ -6006,7 +6006,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ ÐÑмениÑÑ Ð²ÑÐ±Ð¾Ñ Ð²ÑеÑ
ÑÑÑаниÑ
Rotate selected pages counter-clockwise
@@ -6014,7 +6014,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ ÐовеÑнÑÑÑ Ð²ÑбÑаннÑе ÑÑÑаниÑÑ Ð¿ÑоÑив ÑаÑовой ÑÑÑелки
Rotate selected pages clockwise
@@ -6022,7 +6022,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ ÐовеÑнÑÑÑ Ð²ÑбÑаннÑе ÑÑÑаниÑÑ Ð¿Ð¾ ÑаÑовой ÑÑÑелке
Delete selected pages
@@ -6030,7 +6030,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ УдалиÑÑ Ð²ÑбÑаннÑе ÑÑÑаниÑÑ
Rotate page counter-clockwise
@@ -6038,7 +6038,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ ÐовеÑнÑÑÑ ÑÑÑаниÑÑ Ð¿ÑоÑив ÑаÑовой ÑÑÑелки
Rotate page clockwise
@@ -6046,7 +6046,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ ÐовеÑнÑÑÑ ÑÑÑаниÑÑ Ð¿Ð¾ ÑаÑовой ÑÑÑелке
Delete page
@@ -6054,7 +6054,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ УдалиÑÑ ÑÑÑаниÑÑ
Add / remove document split here
@@ -6062,7 +6062,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ ÐобавиÑÑ / ÑдалиÑÑ ÑазделиÑÐµÐ»Ñ Ð´Ð¾ÐºÑменÑа здеÑÑ
Split here
@@ -6070,7 +6070,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ РазделиÑÑ Ð·Ð´ÐµÑÑ
Create new document(s)
@@ -6078,7 +6078,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ СоздаÑÑ Ð½Ð¾Ð²Ñй докÑменÑ(Ñ)
Update existing document
@@ -6086,7 +6086,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ ÐбновиÑÑ ÑÑÑеÑÑвÑÑÑий докÑменÑ
Copy metadata
@@ -6094,7 +6094,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ СкопиÑоваÑÑ Ð¼ÐµÑаданнÑе
Delete original
@@ -6102,7 +6102,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Delete original
+ УдалиÑÑ Ð¾Ñигинал
Merge with existing permissions
@@ -7192,7 +7192,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ из
-
@@ -7252,7 +7252,7 @@
src/app/components/document-detail/document-detail.component.ts
1359
- PDF Editor
+ РедакÑÐ¾Ñ PDF
Send
@@ -7800,7 +7800,7 @@
src/app/components/document-detail/document-detail.component.ts
1378
- PDF edit operation for "" will begin in the background.
+ РедакÑиÑование PDF Ð´Ð»Ñ "" наÑнеÑÑÑ Ð² Ñоновом Ñежиме.
Error executing PDF edit operation
@@ -7808,7 +7808,7 @@
src/app/components/document-detail/document-detail.component.ts
1390
- Error executing PDF edit operation
+ ÐÑибка пÑи вÑполнении опеÑаÑии ÑедакÑиÑÐ¾Ð²Ð°Ð½Ð¸Ñ PDF
An error occurred loading tiff:
@@ -10944,7 +10944,7 @@
src/app/services/settings.service.ts
249
- Vietnamese
+ ÐÑеÑнамÑкий
Chinese Simplified
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index 9ef30132d..fcca8965f 100644
--- a/src-ui/src/locale/messages.sk_SK.xlf
+++ b/src-ui/src/locale/messages.sk_SK.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Nastavenia
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logy
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Súborové úlohy
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Kôš
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
PoužÃvatelia a skupiny
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentácia
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Otvorené dokumenty
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Zavrieť všetky
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Spravovať
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-mail
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administrácia
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfigurácia
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
je dostupný.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klikni pre zobrazenie.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx môže automaticky kontrolovať aktualizácie
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Ako to funguje?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Aktualizácia je k dispozÃcii
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index ce926c977..977eeddd0 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Nastavitve
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Dnevniki
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
DatoteÄne naloge
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Smetnjak
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Uporabniki & Skupine
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentacija
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Odpri dokumente
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Zapri vse
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Upravljaj
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Pošta
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administracija
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfiguracija
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
je na voljo.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klikni za ogled.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx lahko samodejno preveri za posodobitve
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Kako to deluje?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Posodobitev na voljo
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index da776867a..2e632cd29 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Podešavanja
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logovi
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Obrada dokumenata
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Otpad
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Korisnici i Grupe
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentacija
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Otvorena dokumenta
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Zatvori svе
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Upravljanje
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Imejl
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administracija
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfiguracija
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
je dostupno.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klik za prеglеd.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx može automatski da proveri da li postoje ažuriranja
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Kako ovo radi?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Dostupno jе ažuriranjе
@@ -5998,7 +5998,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ Izaberi sve stranice
Deselect all pages
@@ -6006,7 +6006,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ Poništi izbor svih stranica
Rotate selected pages counter-clockwise
@@ -6014,7 +6014,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ Rotirajte izabrane stranice u smeru suprotnom od kazaljke na satu
Rotate selected pages clockwise
@@ -6022,7 +6022,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ Rotirajte izabrane stranice u smeru kazaljke na satu
Delete selected pages
@@ -6030,7 +6030,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ Obriši izabrane stranice
Rotate page counter-clockwise
@@ -6038,7 +6038,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ Rotirajte stranicu u smeru suprotnom od kazaljke na satu
Rotate page clockwise
@@ -6046,7 +6046,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ Rotirajte stranicu u smeru kazaljke na satu
Delete page
@@ -6054,7 +6054,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Obriši stranicu
Add / remove document split here
@@ -6062,7 +6062,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ Dodaj/ukloni dokument podeljen ovde
Split here
@@ -6070,7 +6070,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ Podeli ovde
Create new document(s)
@@ -6078,7 +6078,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ Napravi novi dokument(e)
Update existing document
@@ -6086,7 +6086,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ Ažuriraj postojecÌi dokument
Copy metadata
@@ -6094,7 +6094,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ Kopiraj metapodatke
Delete original
@@ -6102,7 +6102,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Delete original
+ Izbriši original
Merge with existing permissions
@@ -7192,7 +7192,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ od
-
@@ -7252,7 +7252,7 @@
src/app/components/document-detail/document-detail.component.ts
1359
- PDF Editor
+ PDF ureÄivaÄ
Send
@@ -7800,7 +7800,7 @@
src/app/components/document-detail/document-detail.component.ts
1378
- PDF edit operation for "" will begin in the background.
+ UreÄivanje PDF-a za ââ cÌe poÄeti u pozadini.
Error executing PDF edit operation
@@ -7808,7 +7808,7 @@
src/app/components/document-detail/document-detail.component.ts
1390
- Error executing PDF edit operation
+ GreÅ¡ka pri izvrÅ¡avanju operacije ureÄivanja PDF-a
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 885c9965b..2ead33d2b 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Inställningar
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Loggar
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Filuppgifter
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Papperskorg
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Användare & Grupper
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokumentation
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Ãppna dokument
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Stäng alla
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Hantera
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
E-post
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Administration
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Konfiguration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
är tillgänglig.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Klicka för att visa.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx kan automatiskt söka efter uppdateringar
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Hur fungerar detta?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Uppdatering tillgänglig
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index b2aa706d7..1abe7e745 100644
--- a/src-ui/src/locale/messages.th_TH.xlf
+++ b/src-ui/src/locale/messages.th_TH.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
à¸à¸²à¸£à¸à¸±à¹à¸à¸à¹à¸²
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Logs
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
รายà¸à¸²à¸£à¸à¸²à¸
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Trash
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
à¸à¸¹à¹à¹à¸à¹à¸à¸²à¸ & à¸à¸¥à¸¸à¹à¸¡
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
à¹à¸à¸à¸ªà¸²à¸£à¸à¹à¸²à¸à¸à¸´à¸
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
à¹à¸à¸´à¸à¹à¸à¸à¸ªà¸²à¸£
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
à¸à¸´à¸à¸à¸±à¹à¸à¸«à¸¡à¸
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
à¸à¸±à¸à¸à¸²à¸£
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
à¹à¸¡à¸¥
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
à¸à¸²à¸£à¸à¸±à¸à¸à¸²à¸£à¸£à¸°à¸à¸
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Configuration
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
à¹à¸à¹à¸à¸²à¸à¹à¸à¹
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
à¸à¸¥à¸´à¸à¹à¸à¸·à¹à¸à¸à¸¹
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx can automatically check for updates
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
ระà¸à¸à¸à¸µà¹à¸à¸³à¸à¸²à¸à¸¢à¸±à¸à¹à¸?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
มีà¸à¸²à¸£à¸à¸±à¸à¹à¸à¸
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 12aa787c2..abaf4ecc8 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Ayarlar
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Günlükler
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Dosya Görevleri
@@ -2076,7 +2076,7 @@
src/app/components/admin/tasks/tasks.component.ts
45
- Result
+ Sonuç
Dismiss selected
@@ -2092,7 +2092,7 @@
src/app/components/admin/tasks/tasks.component.ts
109
- Dismiss all
+ Tümünü yoksay
Confirm Dismiss All
@@ -2116,7 +2116,7 @@
src/app/components/admin/tasks/tasks.component.ts
236
- queued
+ sıraya alındı
started
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Ãöp kutusu
@@ -2204,7 +2204,7 @@
src/app/components/admin/trash/trash.component.html
63
- günler
+ gün
Restore
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Kullanıcılar & Gruplar
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Dokümantasyon
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Belgeleri aç
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Tümünü kapat
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Yönet
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Posta
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Yönetici
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Yapılandırma
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
Github
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
kullanılabilir.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Görüntülemek için tıklayın.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx güncellemeleri otomatik olarak kontrol edebilir
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Bu nasıl çalıÅıyor?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Güncelleme mevcut
@@ -3276,7 +3276,7 @@
src/app/components/app-frame/global-search/global-search.component.html
103
- Tags
+ Etiketler
Correspondents
@@ -3292,7 +3292,7 @@
src/app/components/app-frame/global-search/global-search.component.html
117
- Document types
+ Belge Türleri
Storage paths
@@ -3300,7 +3300,7 @@
src/app/components/app-frame/global-search/global-search.component.html
124
- Storage paths
+ Depolama dizinleri
Users
@@ -3308,7 +3308,7 @@
src/app/components/app-frame/global-search/global-search.component.html
131
- Users
+ Kullanıcılar
Groups
@@ -3316,7 +3316,7 @@
src/app/components/app-frame/global-search/global-search.component.html
138
- Groups
+ Gruplar
Custom fields
@@ -3324,7 +3324,7 @@
src/app/components/app-frame/global-search/global-search.component.html
145
- Custom fields
+ Ãzel alanlar
Mail accounts
@@ -3332,7 +3332,7 @@
src/app/components/app-frame/global-search/global-search.component.html
152
- Mail accounts
+ Posta Hesapları
Mail rules
@@ -3340,7 +3340,7 @@
src/app/components/app-frame/global-search/global-search.component.html
159
- Mail rules
+ E-posta kuralları
Workflows
@@ -3348,7 +3348,7 @@
src/app/components/app-frame/global-search/global-search.component.html
166
- Workflows
+ İŠAkıÅları
Successfully updated object.
@@ -3380,7 +3380,7 @@
src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
16
- Clear All
+ Tümünü temizle
No notifications
@@ -3388,7 +3388,7 @@
src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
20
- No notifications
+ Bildirim yok
Clear
@@ -3404,7 +3404,7 @@
src/app/components/common/confirm-button/confirm-button.component.ts
22
- Are you sure?
+ Emin misiniz?
Confirmation
@@ -3460,7 +3460,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
9
- Documents:
+ Belgeler:
Use metadata from:
@@ -3536,7 +3536,7 @@
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
10
- Search fields
+ Alanları Arama
Create new field
@@ -3544,7 +3544,7 @@
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
21
- Create new field
+ Yeni alan oluÅtur
Saved field "".
@@ -3556,7 +3556,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts
85
- Saved field "".
+ "" alanı kaydedildi.
Error saving field.
@@ -3600,7 +3600,7 @@
src/app/components/common/input/date/date.component.html
21
- Today
+ Bugün
Close
@@ -3652,7 +3652,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
92
- True
+ DoÄru
False
@@ -3668,7 +3668,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
93
- False
+ YanlıÅ
Search docs...
@@ -3680,7 +3680,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
109
- Search docs...
+ Belgelerde ara...
Any
@@ -3728,7 +3728,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
146
- Not
+ DeÄil
Add query
@@ -3736,7 +3736,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
165
- Add query
+ Sorgu Ekle
Add expression
@@ -3744,7 +3744,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
168
- Add expression
+ İfade Ekle
Relative dates
@@ -3756,7 +3756,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
101
- Relative dates
+ Göreceli tarihler
now
@@ -3780,7 +3780,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
120
- From
+ Kimden
To
@@ -3792,7 +3792,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
144
- To
+ Kime
Added
@@ -3824,7 +3824,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
76
- Within 1 week
+ 1 hafta içinde
Within 1 month
@@ -3832,7 +3832,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
81
- Within 1 month
+ 1 ay içinde
Within 3 months
@@ -3840,7 +3840,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
86
- Within 3 months
+ 3 ay içinde
Within 1 year
@@ -3848,7 +3848,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
91
- Within 1 year
+ 1 yıl içinde
This year
@@ -3856,7 +3856,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
96
- This year
+ Bu yıl
This month
@@ -3864,7 +3864,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
101
- This month
+ Bu ay
Yesterday
@@ -3876,7 +3876,7 @@
src/app/pipes/custom-date.pipe.ts
29
- Yesterday
+ Dün
Matching algorithm
@@ -3996,7 +3996,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
37
- Default Currency
+ Varsayılan Para Birimi
3-character currency code
@@ -5366,7 +5366,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
338
- Email subject
+ E-posta konusu
Email body
@@ -5374,7 +5374,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
339
- Email body
+ E-posta gövdesi
Email recipients
@@ -5382,7 +5382,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
340
- Email recipients
+ E-posta alıcıları
Attach document
@@ -5390,7 +5390,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
341
- Attach document
+ Belge ekle
Webhook url
@@ -5398,7 +5398,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
349
- Webhook url
+ Webhook url
Use parameters for webhook body
@@ -5422,7 +5422,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
355
- Webhook params
+ Webhook parametreleri
Webhook body
@@ -5430,7 +5430,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
357
- Webhook body
+ Webhook gövdesi
Webhook headers
@@ -5438,7 +5438,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
359
- Webhook headers
+ Webhook baÅlıkları
Include document
@@ -5446,7 +5446,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
360
- Include document
+ Belge içeriyor
Consume Folder
@@ -5454,7 +5454,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
65
- Consume Folder
+ İÅlenecek Klasör
API Upload
@@ -5478,7 +5478,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
77
- Web UI
+ Web Arayüzü
Modified
@@ -5498,7 +5498,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
96
- Custom Field
+ Ãzel Alan
Consumption Started
@@ -5506,7 +5506,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
103
- Consumption Started
+ İÅleme baÅladı
Document Added
@@ -5514,7 +5514,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
107
- Document Added
+ Belge eklendi
Document Updated
@@ -5522,7 +5522,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
111
- Document Updated
+ Belge Güncellendi
Scheduled
@@ -5530,7 +5530,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
115
- Scheduled
+ ZamanlanmıÅ
Assignment
@@ -5578,7 +5578,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
7
- Email address(es)
+ E-posta adresleri
Subject
@@ -5586,7 +5586,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
11
- Subject
+ Konu
Message
@@ -5594,7 +5594,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
15
- Message
+ Ileti
Use archive version
@@ -5610,7 +5610,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
29
- Send email
+ Eposta gönder
Email Document
@@ -5618,7 +5618,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
21
- Email Document
+ Belgeyi postala
Email sent
@@ -5626,7 +5626,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
66
- Email sent
+ E-posta gönderildi
Error emailing document
@@ -5634,7 +5634,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
70
- Error emailing document
+ Belgeyi postalarken hata oluÅtu
Include
@@ -6000,7 +6000,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ Tüm sayfaları seç
Deselect all pages
@@ -6008,7 +6008,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ Tüm sayfaların seçimini kaldır
Rotate selected pages counter-clockwise
@@ -6016,7 +6016,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ Seçili sayfaları saat yönünün tersine çevir
Rotate selected pages clockwise
@@ -6024,7 +6024,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ Seçili sayfaları saat yönününde çevir
Delete selected pages
@@ -6032,7 +6032,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ Seçili sayfaları sil
Rotate page counter-clockwise
@@ -6040,7 +6040,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ Sayfayı saat yönünün tersine çevir
Rotate page clockwise
@@ -6048,7 +6048,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ Sayfayı Saat Yönünde Döndür
Delete page
@@ -6056,7 +6056,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Sayfayı sil
Add / remove document split here
@@ -6072,7 +6072,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ Buradan böl
Create new document(s)
@@ -6080,7 +6080,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ Yeni belge oluÅtur
Update existing document
@@ -6088,7 +6088,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ Mevcut belgeyi güncelle
Copy metadata
@@ -6104,7 +6104,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Delete original
+ Orijinali Sil
Merge with existing permissions
@@ -6364,7 +6364,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
72
- Disconnect
+ BaÄlantıyı Kes
Disconnect social account
@@ -6592,7 +6592,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
27
- 30 days
+ 30 gün
Never
@@ -6600,7 +6600,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
28
- Never
+ Asla
Share Links
@@ -6620,7 +6620,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
83
- Error retrieving links
+ Linkleri getirirken hata oluÅtu
days
@@ -6628,7 +6628,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
102
- days
+ gün
Error deleting link
@@ -6636,7 +6636,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
131
- Error deleting link
+ Linki silerken hata oluÅtu
Error creating link
@@ -6644,7 +6644,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
159
- Error creating link
+ Linki oluÅturma hatası
Environment
@@ -6652,7 +6652,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
18
- Environment
+ Ortam
Paperless-ngx Version
@@ -6660,7 +6660,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
22
- Paperless-ngx Version
+ Paperless-ngx Versiyonu
Install Type
@@ -6668,7 +6668,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
35
- Install Type
+ Kurulum türü
Server OS
@@ -6676,7 +6676,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
37
- Server OS
+ Sunucu İÅletim Sistemi
Media Storage
@@ -6684,7 +6684,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
39
- Media Storage
+ Medya Deposu
available
@@ -6692,7 +6692,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
42
- available
+ kullanılabilir
total
@@ -6700,7 +6700,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
42
- total
+ toplam
Database
@@ -6708,7 +6708,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
52
- Database
+ Veritabanı
Status
@@ -6728,7 +6728,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
19
- Status
+ Durum
Migration Status
@@ -6736,7 +6736,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
76
- Migration Status
+ Göç Durumu
Up to date
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 2722834b9..c2cae8011 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
ÐалаÑÑÑваннÑ
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Ðоги
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
ÐбÑобка ÑайлÑв
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
СмÑÑник
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ÐоÑиÑÑÑваÑÑ Ñа гÑÑпи
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
ÐокÑменÑаÑÑÑ
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
ÐÑдкÑиÑи докÑменÑи
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ÐакÑиÑи вÑе
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
ÐеÑÑваннÑ
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Ðл. поÑÑа
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
ÐдмÑнÑÑÑÑÑваннÑ
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
ÐалаÑÑÑваннÑ
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
Ñ Ð´Ð¾ÑÑÑпним Ð´Ð»Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ.
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ÐаÑиÑнÑÑÑ Ð´Ð»Ñ Ð¿ÐµÑеглÑдÑ.
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx може авÑомаÑиÑно пеÑевÑÑÑÑи наÑвнÑÑÑÑ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ñ
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Як Ñе пÑаÑÑÑ?
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
ÐоÑÑÑпне оновленнÑ
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index 9a55059be..360aaffd9 100644
--- a/src-ui/src/locale/messages.vi_VN.xlf
+++ b/src-ui/src/locale/messages.vi_VN.xlf
@@ -482,11 +482,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
Cà i Äặt
@@ -862,11 +862,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
Nháºt ký
@@ -1295,11 +1295,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -2017,11 +2017,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
Tác vụ tá»p
@@ -2523,11 +2523,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
Thùng rác
@@ -2952,11 +2952,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
Ngưá»i dùng và Nhóm
@@ -3379,11 +3379,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
Tà i liá»u tham khảo
@@ -3407,7 +3407,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
Má» tà i liá»u
@@ -3417,11 +3417,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
Äóng tất cả
@@ -3431,7 +3431,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
Quản lý
@@ -3441,11 +3441,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3459,11 +3459,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3497,11 +3497,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3515,11 +3515,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3533,11 +3533,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3555,11 +3555,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3573,11 +3573,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
Thư
@@ -3587,7 +3587,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
Quản trá»
@@ -3597,11 +3597,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
Cấu hình
@@ -3611,7 +3611,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3621,7 +3621,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
Äã có sẵn.
@@ -3631,7 +3631,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
Nhấp Äá» xem.
@@ -3641,7 +3641,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx có thá» tá»± Äá»ng check update
@@ -3651,7 +3651,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
Cách thức hoạt Äá»ng?
@@ -3661,7 +3661,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
Có bản cáºp nháºt
@@ -7095,7 +7095,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ Huá»· chá»n tất cả các trang
Rotate selected pages counter-clockwise
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index 511b919df..7ba5d4fd6 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
设置
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
æ¥å¿
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
æä»¶ä»»å¡
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
åæ¶ç«
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
ç¨æ· & ç»
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
å¸®å©ææ¡£
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
æå¼ææ¡£
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
å
¨é¨å
³é
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
管ç
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
é®ä»¶
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
管ç
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
é
ç½®
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
å¯ç¨
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
ç¹å»æ¥ç
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx å¯ä»¥èªå¨æ£æ¥æ´æ°
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
è¿æ¯å¦ä½è¿ä½çï¼
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
æå¯ç¨æ´æ°
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 257af2aee..68f359412 100644
--- a/src-ui/src/locale/messages.zh_TW.xlf
+++ b/src-ui/src/locale/messages.zh_TW.xlf
@@ -402,11 +402,11 @@
src/app/components/app-frame/app-frame.component.html
- 252
+ 253
src/app/components/app-frame/app-frame.component.html
- 254
+ 255
è¨å®
@@ -726,11 +726,11 @@
src/app/components/app-frame/app-frame.component.html
- 287
+ 288
src/app/components/app-frame/app-frame.component.html
- 290
+ 291
äºä»¶è¨é
@@ -1094,11 +1094,11 @@
src/app/components/app-frame/app-frame.component.html
- 212
+ 213
src/app/components/app-frame/app-frame.component.html
- 214
+ 215
src/app/components/manage/saved-views/saved-views.component.html
@@ -1726,11 +1726,11 @@
src/app/components/app-frame/app-frame.component.html
- 275
+ 276
src/app/components/app-frame/app-frame.component.html
- 277
+ 278
æªæ¡ä»»å
@@ -2150,11 +2150,11 @@
src/app/components/app-frame/app-frame.component.html
- 235
+ 236
src/app/components/app-frame/app-frame.component.html
- 238
+ 239
å徿¡¶
@@ -2530,11 +2530,11 @@
src/app/components/app-frame/app-frame.component.html
- 266
+ 267
src/app/components/app-frame/app-frame.component.html
- 268
+ 269
使ç¨è
è群çµ
@@ -2898,11 +2898,11 @@
src/app/components/app-frame/app-frame.component.html
- 296
+ 297
src/app/components/app-frame/app-frame.component.html
- 299
+ 300
說ææä»¶
@@ -2922,7 +2922,7 @@
Open documents
src/app/components/app-frame/app-frame.component.html
- 138
+ 139
éåæä»¶
@@ -2930,11 +2930,11 @@
Close all
src/app/components/app-frame/app-frame.component.html
- 158
+ 159
src/app/components/app-frame/app-frame.component.html
- 160
+ 161
ééå
¨é¨
@@ -2942,7 +2942,7 @@
Manage
src/app/components/app-frame/app-frame.component.html
- 169
+ 170
æä»¶ç®¡ç
@@ -2950,11 +2950,11 @@
Correspondents
src/app/components/app-frame/app-frame.component.html
- 175
+ 176
src/app/components/app-frame/app-frame.component.html
- 177
+ 178
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -2966,11 +2966,11 @@
Tags
src/app/components/app-frame/app-frame.component.html
- 182
+ 183
src/app/components/app-frame/app-frame.component.html
- 185
+ 186
src/app/components/common/input/tags/tags.component.ts
@@ -3002,11 +3002,11 @@
Document Types
src/app/components/app-frame/app-frame.component.html
- 191
+ 192
src/app/components/app-frame/app-frame.component.html
- 193
+ 194
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3018,11 +3018,11 @@
Storage Paths
src/app/components/app-frame/app-frame.component.html
- 198
+ 199
src/app/components/app-frame/app-frame.component.html
- 200
+ 201
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
@@ -3034,11 +3034,11 @@
Custom Fields
src/app/components/app-frame/app-frame.component.html
- 205
+ 206
src/app/components/app-frame/app-frame.component.html
- 207
+ 208
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
@@ -3054,11 +3054,11 @@
Workflows
src/app/components/app-frame/app-frame.component.html
- 221
+ 222
src/app/components/app-frame/app-frame.component.html
- 223
+ 224
src/app/components/manage/workflows/workflows.component.html
@@ -3070,11 +3070,11 @@
Mail
src/app/components/app-frame/app-frame.component.html
- 228
+ 229
src/app/components/app-frame/app-frame.component.html
- 231
+ 232
éµä»¶
@@ -3082,7 +3082,7 @@
Administration
src/app/components/app-frame/app-frame.component.html
- 246
+ 247
系統管ç
@@ -3090,11 +3090,11 @@
Configuration
src/app/components/app-frame/app-frame.component.html
- 259
+ 260
src/app/components/app-frame/app-frame.component.html
- 261
+ 262
系統é
ç½®
@@ -3102,7 +3102,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 306
+ 307
GitHub
@@ -3110,7 +3110,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 315,316
+ 316,317
å¯ä¾æ´æ°ã
@@ -3118,7 +3118,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 316
+ 317
é»æä»¥é¡¯ç¤ºã
@@ -3126,7 +3126,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 320
+ 321
Paperless-ngx å¯ä»¥èªåæª¢æ¥æ´æ°
@@ -3134,7 +3134,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 327,329
+ 328,330
鿝æéº¼éä½çï¼
@@ -3142,7 +3142,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 340
+ 341
æå¯ç¨æ´æ°
diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po
index 869ea8de0..c764a386f 100644
--- a/src/locale/cs_CZ/LC_MESSAGES/django.po
+++ b/src/locale/cs_CZ/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-18 12:15\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Language: cs_CZ\n"
@@ -1411,21 +1411,22 @@ msgstr "Jako poslednà krok vyplÅte následujÃcà formuláÅ:"
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr ""
+msgstr "Nelze analyzovat URI {value}, chybà schéma"
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr ""
+msgstr "Nelze analyzovat URI {value}, chybà sÃÅ¥ové umÃstÄnà nebo cesta"
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "URI schéma '{parts.scheme}' nenà povoleno. Povolená schémata: {',\n"
+"'.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr ""
+msgstr "Nelze zpracovat URI {value}"
#: paperless/apps.py:11
msgid "Paperless"
@@ -1753,7 +1754,7 @@ msgstr "Ukrajinština"
#: paperless/settings.py:807
msgid "Vietnamese"
-msgstr ""
+msgstr "Vietnamština"
#: paperless/settings.py:808
msgid "Chinese Simplified"
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index e342461bd..20d7d2f0c 100644
--- a/src/locale/de_DE/LC_MESSAGES/django.po
+++ b/src/locale/de_DE/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-18 15:10\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po
index 413cc8222..2c437fba4 100644
--- a/src/locale/ru_RU/LC_MESSAGES/django.po
+++ b/src/locale/ru_RU/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-20 12:14\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -1411,21 +1411,21 @@ msgstr "Ðа завеÑÑение, пожалÑйÑÑа заполниÑе Ñл
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr ""
+msgstr "Ðе ÑдаеÑÑÑ ÑаÑпознаÑÑ URI {value}, оÑÑÑÑÑÑвÑÐµÑ ÑÑ
ема"
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr ""
+msgstr "Ðе ÑдалоÑÑ ÑаÑпознаÑÑ URI {value}, оÑÑÑÑÑÑвÑÐµÑ ÑеÑевое ÑаÑположение или пÑÑÑ"
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "ÐедопÑÑÑÐ¸Ð¼Ð°Ñ ÑÑ
ема URI '{parts.scheme}'. РазÑеÑеннÑе ÑÑ
емÑ: {', '.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr ""
+msgstr "Ðевозможно ÑаÑпознаÑÑ URI {value}"
#: paperless/apps.py:11
msgid "Paperless"
diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po
index 7d9423ded..fdcb39655 100644
--- a/src/locale/sr_CS/LC_MESSAGES/django.po
+++ b/src/locale/sr_CS/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-19 00:36\n"
"Last-Translator: \n"
"Language-Team: Serbian (Latin)\n"
"Language: sr_CS\n"
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index 618e176bd..fb6ef8560 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-17 20:45\n"
+"PO-Revision-Date: 2025-08-20 12:14\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -1201,13 +1201,14 @@ msgstr "Oturum açmaya geri dön"
#: documents/templates/account/email/base_message.txt:1
#, python-format
msgid "Hello from %(site_name)s!"
-msgstr ""
+msgstr "%(site_name)s uygulamasından merhaba!"
#: documents/templates/account/email/base_message.txt:5
#, python-format
msgid "Thank you for using %(site_name)s!\n"
"%(site_domain)s"
-msgstr ""
+msgstr "%(site_name)s'i kullandıÄınız için teÅekkürler!\n"
+"%(site_domain)s"
#: documents/templates/account/login.html:5
msgid "Paperless-ngx sign in"
diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po
index a67b62efe..d75372aec 100644
--- a/src/locale/vi_VN/LC_MESSAGES/django.po
+++ b/src/locale/vi_VN/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-08-16 14:34+0000\n"
-"PO-Revision-Date: 2025-08-16 14:36\n"
+"PO-Revision-Date: 2025-08-20 12:14\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Language: vi_VN\n"
--
2.47.2