-
+
diff --git a/src/documents/consumer.py b/src/documents/consumer.py
index b7a559575..06e9f68fc 100644
--- a/src/documents/consumer.py
+++ b/src/documents/consumer.py
@@ -726,12 +726,17 @@ class Consumer(LoggingMixin):
storage_type = Document.STORAGE_TYPE_UNENCRYPTED
+ title = file_info.title[:127]
+ if self.override_title is not None:
+ try:
+ title = self._parse_title_placeholders(self.override_title)
+ except Exception as e:
+ self.log.error(
+ f"Error occurred parsing title override '{self.override_title}', falling back to original. Exception: {e}",
+ )
+
document = Document.objects.create(
- title=(
- self._parse_title_placeholders(self.override_title)
- if self.override_title is not None
- else file_info.title
- )[:127],
+ title=title,
content=text,
mime_type=mime_type,
checksum=hashlib.md5(self.working_copy.read_bytes()).hexdigest(),
diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py
index 233c56367..eb0280fbd 100644
--- a/src/documents/serialisers.py
+++ b/src/documents/serialisers.py
@@ -1386,12 +1386,38 @@ class WorkflowActionSerializer(serializers.ModelSerializer):
def validate(self, attrs):
# Empty strings treated as None to avoid unexpected behavior
- if (
- "assign_title" in attrs
- and attrs["assign_title"] is not None
- and len(attrs["assign_title"]) == 0
- ):
- attrs["assign_title"] = None
+ if "assign_title" in attrs:
+ if attrs["assign_title"] is not None and len(attrs["assign_title"]) == 0:
+ attrs["assign_title"] = None
+ else:
+ try:
+ # test against all placeholders, see consumer.py `parse_doc_title_w_placeholders`
+ attrs["assign_title"].format(
+ correspondent="",
+ document_type="",
+ added="",
+ added_year="",
+ added_year_short="",
+ added_month="",
+ added_month_name="",
+ added_month_name_short="",
+ added_day="",
+ added_time="",
+ owner_username="",
+ original_filename="",
+ created="",
+ created_year="",
+ created_year_short="",
+ created_month="",
+ created_month_name="",
+ created_month_name_short="",
+ created_day="",
+ created_time="",
+ )
+ except (ValueError, KeyError) as e:
+ raise serializers.ValidationError(
+ {"assign_title": f'Invalid f-string detected: "{e.args[0]}"'},
+ )
return attrs
diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py
index 01c62f079..eee06bb6e 100644
--- a/src/documents/signals/handlers.py
+++ b/src/documents/signals/handlers.py
@@ -570,19 +570,27 @@ def run_workflow(
document.owner = action.assign_owner
if action.assign_title is not None:
- document.title = parse_doc_title_w_placeholders(
- action.assign_title,
- document.correspondent.name
- if document.correspondent is not None
- else "",
- document.document_type.name
- if document.document_type is not None
- else "",
- document.owner.username if document.owner is not None else "",
- timezone.localtime(document.added),
- document.original_filename,
- timezone.localtime(document.created),
- )
+ try:
+ document.title = parse_doc_title_w_placeholders(
+ action.assign_title,
+ document.correspondent.name
+ if document.correspondent is not None
+ else "",
+ document.document_type.name
+ if document.document_type is not None
+ else "",
+ document.owner.username
+ if document.owner is not None
+ else "",
+ document.added,
+ document.original_filename,
+ document.created,
+ )
+ except Exception:
+ logger.exception(
+ f"Error occurred parsing title assignment '{action.assign_title}', falling back to original",
+ extra={"group": logging_group},
+ )
if (
action.assign_view_users is not None
diff --git a/src/documents/tests/test_api_workflows.py b/src/documents/tests/test_api_workflows.py
index d7a7ad6ff..21e887c24 100644
--- a/src/documents/tests/test_api_workflows.py
+++ b/src/documents/tests/test_api_workflows.py
@@ -248,6 +248,45 @@ class TestApiWorkflows(DirectoriesMixin, APITestCase):
self.assertEqual(WorkflowTrigger.objects.count(), 1)
+ def test_api_create_invalid_assign_title(self):
+ """
+ GIVEN:
+ - API request to create a workflow
+ - Invalid f-string for assign_title
+ WHEN:
+ - API is called
+ THEN:
+ - Correct HTTP 400 response
+ - No objects are created
+ """
+ response = self.client.post(
+ self.ENDPOINT,
+ json.dumps(
+ {
+ "name": "Workflow 1",
+ "order": 1,
+ "triggers": [
+ {
+ "type": WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
+ },
+ ],
+ "actions": [
+ {
+ "assign_title": "{created_year]",
+ },
+ ],
+ },
+ ),
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
+ self.assertIn(
+ "Invalid f-string detected",
+ response.data["actions"][0]["assign_title"][0],
+ )
+
+ self.assertEqual(Workflow.objects.count(), 1)
+
def test_api_create_workflow_trigger_action_empty_fields(self):
"""
GIVEN:
diff --git a/src/documents/tests/test_consumer.py b/src/documents/tests/test_consumer.py
index 748e49e10..f77265970 100644
--- a/src/documents/tests/test_consumer.py
+++ b/src/documents/tests/test_consumer.py
@@ -423,6 +423,16 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
self.assertEqual(document.title, "Override Title")
self._assert_first_last_send_progress()
+ def testOverrideTitleInvalidPlaceholders(self):
+ with self.assertLogs("paperless.consumer", level="ERROR") as cm:
+ document = self.consumer.try_consume_file(
+ self.get_test_file(),
+ override_title="Override {correspondent]",
+ )
+ self.assertEqual(document.title, "sample")
+ expected_str = "Error occurred parsing title override 'Override {correspondent]', falling back to original"
+ self.assertIn(expected_str, cm.output[0])
+
def testOverrideCorrespondent(self):
c = Correspondent.objects.create(name="test")
diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py
index b4ad4aa57..b688eecc9 100644
--- a/src/documents/tests/test_workflows.py
+++ b/src/documents/tests/test_workflows.py
@@ -966,6 +966,50 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase):
expected_str = f"Document correspondent {doc.correspondent} does not match {trigger.filter_has_correspondent}"
self.assertIn(expected_str, cm.output[1])
+ def test_document_added_invalid_title_placeholders(self):
+ """
+ GIVEN:
+ - Existing workflow with added trigger type
+ - Assign title field has an error
+ WHEN:
+ - File that matches is added
+ THEN:
+ - Title is not updated, error is output
+ """
+ trigger = WorkflowTrigger.objects.create(
+ type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED,
+ filter_filename="*sample*",
+ )
+ action = WorkflowAction.objects.create(
+ assign_title="Doc {created_year]",
+ )
+ w = Workflow.objects.create(
+ name="Workflow 1",
+ order=0,
+ )
+ w.triggers.add(trigger)
+ w.actions.add(action)
+ w.save()
+
+ now = timezone.localtime(timezone.now())
+ created = now - timedelta(weeks=520)
+ doc = Document.objects.create(
+ original_filename="sample.pdf",
+ title="sample test",
+ content="Hello world bar",
+ created=created,
+ )
+
+ with self.assertLogs("paperless.handlers", level="ERROR") as cm:
+ document_consumption_finished.send(
+ sender=self.__class__,
+ document=doc,
+ )
+ expected_str = f"Error occurred parsing title assignment '{action.assign_title}', falling back to original"
+ self.assertIn(expected_str, cm.output[0])
+
+ self.assertEqual(doc.title, "sample test")
+
def test_document_updated_workflow(self):
trigger = WorkflowTrigger.objects.create(
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
From 1ac298f6ff3b3f2538b9dc476943c8dc61b5b8b9 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 12:53:35 -0800
Subject: [PATCH 05/14] Fix empty assign_title validation
---
src/documents/serialisers.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py
index eb0280fbd..ffcfbcc1d 100644
--- a/src/documents/serialisers.py
+++ b/src/documents/serialisers.py
@@ -1385,9 +1385,9 @@ class WorkflowActionSerializer(serializers.ModelSerializer):
]
def validate(self, attrs):
- # Empty strings treated as None to avoid unexpected behavior
- if "assign_title" in attrs:
- if attrs["assign_title"] is not None and len(attrs["assign_title"]) == 0:
+ if "assign_title" in attrs and attrs["assign_title"] is not None:
+ if len(attrs["assign_title"]) == 0:
+ # Empty strings treated as None to avoid unexpected behavior
attrs["assign_title"] = None
else:
try:
From b0aeec4c435addc8e7e0fc54886ac27d0900911e Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 13:21:51 -0800
Subject: [PATCH 06/14] Fix: Coerce language app config field to None if empty
---
src/documents/tests/test_api_app_config.py | 6 ++++--
src/paperless/serialisers.py | 3 +++
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/documents/tests/test_api_app_config.py b/src/documents/tests/test_api_app_config.py
index ed3a4b12f..a12d2a695 100644
--- a/src/documents/tests/test_api_app_config.py
+++ b/src/documents/tests/test_api_app_config.py
@@ -76,10 +76,10 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
config = ApplicationConfiguration.objects.first()
self.assertEqual(config.color_conversion_strategy, ColorConvertChoices.RGB)
- def test_api_update_config_empty_json_field(self):
+ def test_api_update_config_empty_fields(self):
"""
GIVEN:
- - API request to update app config with empty string for user_args JSONField
+ - API request to update app config with empty string for user_args JSONField and language field
WHEN:
- API is called
THEN:
@@ -91,6 +91,7 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
json.dumps(
{
"user_args": "",
+ "language": "",
},
),
content_type="application/json",
@@ -98,3 +99,4 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
self.assertEqual(response.status_code, status.HTTP_200_OK)
config = ApplicationConfiguration.objects.first()
self.assertEqual(config.user_args, None)
+ self.assertEqual(config.language, None)
diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py
index 50407564b..fb366f808 100644
--- a/src/paperless/serialisers.py
+++ b/src/paperless/serialisers.py
@@ -125,8 +125,11 @@ class ApplicationConfigurationSerializer(serializers.ModelSerializer):
user_args = serializers.JSONField(binary=True, allow_null=True)
def run_validation(self, data):
+ # Empty strings treated as None to avoid unexpected behavior
if "user_args" in data and data["user_args"] == "":
data["user_args"] = None
+ if "language" in data and data["language"] == "":
+ data["language"] = None
return super().run_validation(data)
class Meta:
From 8e8810cbaa6cc93c15a59c7a8e85313336de0e71 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 13:22:05 -0800
Subject: [PATCH 07/14] Fix: correct OCR_MAX_IMAGE_PIXELS doc link
---
src-ui/src/app/data/paperless-config.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-ui/src/app/data/paperless-config.ts b/src-ui/src/app/data/paperless-config.ts
index dd9dfdb33..69f9b46e0 100644
--- a/src-ui/src/app/data/paperless-config.ts
+++ b/src-ui/src/app/data/paperless-config.ts
@@ -146,7 +146,7 @@ export const PaperlessConfigOptions: ConfigOption[] = [
key: 'max_image_pixels',
title: $localize`Max Image Pixels`,
type: ConfigOptionType.Number,
- config_key: 'PAPERLESS_OCR_IMAGE_DPI',
+ config_key: 'PAPERLESS_OCR_MAX_IMAGE_PIXELS',
category: ConfigCategory.OCR,
},
{
From 3dcb973adb51bd1ffd9ff5c92553340416a581d3 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 15:34:20 -0800
Subject: [PATCH 08/14] Enhancement: Explain behavior of unset app config
boolean to user (#5345)
---
src-ui/messages.xlf | 9 +++++++-
.../admin/config/config.component.html | 2 +-
.../common/input/switch/switch.component.html | 23 +++++++++++++++++--
.../input/switch/switch.component.spec.ts | 8 ++++++-
.../common/input/switch/switch.component.ts | 9 +++++++-
5 files changed, 45 insertions(+), 6 deletions(-)
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 4b5c56150..9581095ad 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -3706,7 +3706,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -3827,6 +3827,13 @@
92
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+
Add tag
diff --git a/src-ui/src/app/components/admin/config/config.component.html b/src-ui/src/app/components/admin/config/config.component.html
index 493ee4737..6f5fc4bac 100644
--- a/src-ui/src/app/components/admin/config/config.component.html
+++ b/src-ui/src/app/components/admin/config/config.component.html
@@ -27,7 +27,7 @@
@switch (option.type) {
@case (ConfigOptionType.Select) { }
@case (ConfigOptionType.Number) { }
- @case (ConfigOptionType.Boolean) { }
+ @case (ConfigOptionType.Boolean) { }
@case (ConfigOptionType.String) { }
@case (ConfigOptionType.JSON) { }
}
diff --git a/src-ui/src/app/components/common/input/switch/switch.component.html b/src-ui/src/app/components/common/input/switch/switch.component.html
index 189aa937f..e0b63c5f7 100644
--- a/src-ui/src/app/components/common/input/switch/switch.component.html
+++ b/src-ui/src/app/components/common/input/switch/switch.component.html
@@ -2,7 +2,14 @@
@if (!horizontal) {
-
+
@if (removable) {
+
+
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
diff --git a/src-ui/src/app/components/common/input/switch/switch.component.spec.ts b/src-ui/src/app/components/common/input/switch/switch.component.spec.ts
index 08a4598a3..372bfd8ab 100644
--- a/src-ui/src/app/components/common/input/switch/switch.component.spec.ts
+++ b/src-ui/src/app/components/common/input/switch/switch.component.spec.ts
@@ -5,6 +5,7 @@ import {
NG_VALUE_ACCESSOR,
ReactiveFormsModule,
} from '@angular/forms'
+import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
describe('SwitchComponent', () => {
let component: SwitchComponent
@@ -15,7 +16,7 @@ describe('SwitchComponent', () => {
TestBed.configureTestingModule({
declarations: [SwitchComponent],
providers: [],
- imports: [FormsModule, ReactiveFormsModule],
+ imports: [FormsModule, ReactiveFormsModule, NgbTooltipModule],
}).compileComponents()
fixture = TestBed.createComponent(SwitchComponent)
@@ -36,4 +37,9 @@ describe('SwitchComponent', () => {
fixture.detectChanges()
expect(component.value).toBeFalsy()
})
+
+ it('should show note if unset', () => {
+ component.value = null
+ expect(component.isUnset).toBeTruthy()
+ })
})
diff --git a/src-ui/src/app/components/common/input/switch/switch.component.ts b/src-ui/src/app/components/common/input/switch/switch.component.ts
index 44e095baa..312c98936 100644
--- a/src-ui/src/app/components/common/input/switch/switch.component.ts
+++ b/src-ui/src/app/components/common/input/switch/switch.component.ts
@@ -1,4 +1,4 @@
-import { Component, forwardRef } from '@angular/core'
+import { Component, Input, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'
import { AbstractInputComponent } from '../abstract-input'
@@ -15,7 +15,14 @@ import { AbstractInputComponent } from '../abstract-input'
styleUrls: ['./switch.component.scss'],
})
export class SwitchComponent extends AbstractInputComponent {
+ @Input()
+ showUnsetNote: boolean = false
+
constructor() {
super()
}
+
+ get isUnset(): boolean {
+ return this.value === null || this.value === undefined
+ }
}
From a2b87fe0127fa073af1631a3089020ab64658517 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 15:54:02 -0800
Subject: [PATCH 09/14] Trigger crowdin action on changes to frontend strings
file
---
.github/workflows/crowdin.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml
index 11dc0b36a..741ef9584 100644
--- a/.github/workflows/crowdin.yml
+++ b/.github/workflows/crowdin.yml
@@ -7,6 +7,7 @@ on:
push:
paths: [
'src/locale/**',
+ 'src-ui/messages.xlf',
'src-ui/src/locale/**'
]
branches: [ dev ]
From 530f4a8b286a035d4dfab81825765baf536b2085 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 10 Jan 2024 15:55:09 -0800
Subject: [PATCH 10/14] Bump version to 2.3.3
---
src-ui/src/environments/environment.prod.ts | 2 +-
src/paperless/version.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index 933a504cc..cfac3ad9c 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '4',
appTitle: 'Paperless-ngx',
- version: '2.3.2-dev',
+ version: '2.3.3',
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 35da743ef..6740d8994 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, 3, 2)
+__version__: Final[tuple[int, int, int]] = (2, 3, 3)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
From c2c9a953d3f4dfb2b7d5eb8f4e055aad8339aae2 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 10 Jan 2024 15:58:17 -0800
Subject: [PATCH 11/14] New Crowdin translations by GitHub Action (#5314)
Co-authored-by: Crowdin Bot
---
src-ui/src/locale/messages.af_ZA.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.ar_AR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.be_BY.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.bg_BG.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.ca_ES.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.cs_CZ.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.da_DK.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.de_DE.xlf | 48 ++++++++++++++++++--------
src-ui/src/locale/messages.el_GR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.es_ES.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.fi_FI.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.fr_FR.xlf | 42 ++++++++++++++++------
src-ui/src/locale/messages.he_IL.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.hr_HR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.hu_HU.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.id_ID.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.it_IT.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.ko_KR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.lb_LU.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.lv_LV.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.nl_NL.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.no_NO.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.pl_PL.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.pt_BR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.pt_PT.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.ro_RO.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.ru_RU.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.sk_SK.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.sl_SI.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.sr_CS.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.sv_SE.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.th_TH.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.tr_TR.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.uk_UA.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.vi_VN.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.zh_CN.xlf | 40 +++++++++++++++------
src-ui/src/locale/messages.zh_TW.xlf | 40 +++++++++++++++------
src/locale/de_DE/LC_MESSAGES/django.po | 2 +-
src/locale/fr_FR/LC_MESSAGES/django.po | 2 +-
39 files changed, 1117 insertions(+), 377 deletions(-)
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index 3e9673453..16cd4accb 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -441,21 +441,21 @@
Ten slotte, namens elke bydraer aan hierdie gemeenskapsondersteunde projek, dankie dat u Paperless-ngx gebruik!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 22285a70c..df6e9fa43 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -441,21 +441,21 @@
أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
الإدارة
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index efa757727..6074d415d 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -441,21 +441,21 @@
Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index 599845451..dfa0f64bd 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -441,21 +441,21 @@
И накрая, от името на всеки участник в този проект, поддържан от общността, благодарим Ви, че използвате Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Администрация
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Няма намерени елементи
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index 82fe8957c..d2f87e234 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -441,21 +441,21 @@
Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuració
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administració
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuració
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Elements no trobats
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 4be243b6e..3572d2ba3 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index ddfb654b8..10740baf5 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index 74677f234..392d469db 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -441,21 +441,21 @@
Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx benutzen!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Anwendungskonfiguration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Konfiguration
+ Globale Paperless-ngx-Konfigurationsoptionen
@@ -1777,7 +1777,7 @@
src/app/components/admin/tasks/tasks.component.html
113
- {VAR_PLURAL, plural, =1 {Eine Aufgabe} other {Insgesamt Aufgaben}}
+ {VAR_PLURAL, plural, =1 {Eine Aufgabe } other {Insgesamt Aufgaben }}
Failed
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Konfiguration
+
File Tasks
@@ -3832,13 +3844,13 @@
Pfad filtern
-
+
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
185
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung normalisiert.</a>
Filter mail rule
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Keine Elemente gefunden
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
@@ -6737,7 +6757,7 @@
src/app/components/manage/management-list/management-list.component.html
122
- {VAR_PLURAL, plural, =1 {Ein } other { insgesamt}}
+ {VAR_PLURAL, plural, =1 {Ein } other {Insgesamt }}
Automatic
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index a07d47d23..157fda2ee 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -441,21 +441,21 @@
Τέλος, εκ μέρους κάθε συνεισφέροντος σε αυτό το έργο που υποστηρίζεται από την κοινότητα, σας ευχαριστούμε που χρησιμοποιείτε το Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 1f7a98e41..0e0fa6528 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -441,21 +441,21 @@
Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administración
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No se encontraron elementos
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 817ada4ff..4f2e34c2e 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -441,21 +441,21 @@
Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Ylläpito
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 8e9b52aea..67d152ffa 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -441,21 +441,21 @@
Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Configuration de l'application
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Options globales de configuration de Paperless-ngx
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -3838,7 +3850,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
185
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Normalisation de la casse.</a>
Filter mail rule
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Aucun élément trouvé
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 157164d55..4faf3ed72 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
ניהול
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
לא נמצאו פריטים
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index cef99f3a0..72604b01b 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index 870099f10..ba9bfa79e 100644
--- a/src-ui/src/locale/messages.hu_HU.xlf
+++ b/src-ui/src/locale/messages.hu_HU.xlf
@@ -441,21 +441,21 @@
Végezetül, a közösség által támogatott projekt minden közreműködője nevében köszönjük, hogy használod a Paperless-ngx-et!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Adminisztráció
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Nincs találat
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index 1fe1f0b11..e0da4c9ba 100644
--- a/src-ui/src/locale/messages.id_ID.xlf
+++ b/src-ui/src/locale/messages.id_ID.xlf
@@ -441,21 +441,21 @@
Terakhir, atas nama setiap kontributor untuk proyek yang didukung komunitas ini, terima kasih telah menggunakan Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administrasi
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index c2745a19b..9b2e68de5 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -441,21 +441,21 @@
Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configurazione
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Amministrazione
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configurazione
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Nessun elemento trovato
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index 45207d8c4..20d5dc114 100644
--- a/src-ui/src/locale/messages.ko_KR.xlf
+++ b/src-ui/src/locale/messages.ko_KR.xlf
@@ -441,21 +441,21 @@
마지막으로, 이 커뮤니티 지원 프로젝트의 기여자들을 대표하여, Paperless-ngx를 이용해주셔서 감사합니다!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
관리
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
항목 없음
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 43ab175a4..4af563f0c 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index faba9d2cf..7462bfed9 100644
--- a/src-ui/src/locale/messages.lv_LV.xlf
+++ b/src-ui/src/locale/messages.lv_LV.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 6fbe1699c..8bb76afbb 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -441,21 +441,21 @@
Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuratie
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Beheer
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuratie
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Geen items gevonden
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 3e469d55b..729c91fbe 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -441,21 +441,21 @@
Og sist, på vegne av hver bidragsyter til dette fellesskapsstøttede prosjektet. Takk for at du bruker Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 752a6d4e2..1d979631d 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -441,21 +441,21 @@
Na koniec, w imieniu każdego współtwórcy tego projektu wspieranego przez społeczność, dziękujemy za używanie Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Konfiguracja
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administracja
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Konfiguracja
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Nie znaleziono elementów
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 8ae7a54d0..f937535ff 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -441,21 +441,21 @@
Por fim, em nome de todos os colaboradores deste projeto apoiado pela comunidade, obrigado por usar o Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4066,7 +4078,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4199,6 +4211,14 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
Nenhum item encontrado
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 8ec0e2900..a3803fbf0 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -441,21 +441,21 @@
Por último, e em nome de todos os contribuintes deste projeto suportado por uma comunidade, obrigado por utilizar o Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 503a219b9..9b1c01b4c 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -441,21 +441,21 @@
În cele din urmă, în numele fiecărui colaborator la acest proiect sprijinit de comunitate, vă mulţumim pentru că ați folosit Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administrare
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index bb776127e..81e1dbcb5 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -441,21 +441,21 @@
Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Администрирование
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Объектов не найдено
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index d5644f8e2..d2c79fab3 100644
--- a/src-ui/src/locale/messages.sk_SK.xlf
+++ b/src-ui/src/locale/messages.sk_SK.xlf
@@ -441,21 +441,21 @@
Nakoniec vám v mene všetkých prispievateľov tohto komunitou podporovaného projektu ďakujeme za využívanie Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 3ab514480..bbf6dbc34 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -441,21 +441,21 @@
Za konec se vam v imenu vseh sodelujočih pri tem projektu, ki ga podpira skupnost, zahvaljujemo, da uporabljate Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administracija
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Ni najdenih elementov
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 0d2c647ae..3ebae6b9c 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -441,21 +441,21 @@
Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administracija
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
Nijedna stavka nije pronađena
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 861c55277..8da8f9647 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -441,21 +441,21 @@
Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index 5c41a57c2..37507eccd 100644
--- a/src-ui/src/locale/messages.th_TH.xlf
+++ b/src-ui/src/locale/messages.th_TH.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
การจัดการระบบ
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 417ff4423..1db1477de 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -441,21 +441,21 @@
Son olarak, bu topluluk destekli projeye katkıda bulunan herkes adına, Paperless-ngx'i kullandığınız için teşekkür ederiz!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Yönetici
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 52384d5fc..f85f072a7 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -441,21 +441,21 @@
Наостанок хочемо подякувати від імені кожного, хто підтримує Paperless-ngx, за використання цього проєкту!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Адміністрування
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index 0ea643c47..881f9ff0d 100644
--- a/src-ui/src/locale/messages.vi_VN.xlf
+++ b/src-ui/src/locale/messages.vi_VN.xlf
@@ -441,21 +441,21 @@
Cảm ơn bạn đã sử dụng hệ thống
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Quản trị
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index 7e3070fd3..6e92286b6 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -441,21 +441,21 @@
最后,代表社区支持项目的每个贡献者,感谢您使用无纸版!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
管理
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index f659f11cd..058dbecb6 100644
--- a/src-ui/src/locale/messages.zh_TW.xlf
+++ b/src-ui/src/locale/messages.zh_TW.xlf
@@ -441,21 +441,21 @@
Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
-
- Configuration
+
+ Application Configuration
src/app/components/admin/config/config.component.html
1
+ Application Configuration
+
+
+ Global Paperless-ngx configuration options
- src/app/components/app-frame/app-frame.component.html
- 276
+ src/app/components/admin/config/config.component.html
+ 1
-
- src/app/components/app-frame/app-frame.component.html
- 280
-
- Configuration
+ Global Paperless-ngx configuration options
@@ -2488,6 +2488,18 @@
Administration
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 276
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ Configuration
+
File Tasks
@@ -4065,7 +4077,7 @@
src/app/components/common/input/switch/switch.component.html
- 10
+ 17
src/app/components/common/input/text/text.component.html
@@ -4198,6 +4210,14 @@
No items found
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 45
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
Add tag
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index d1c371c08..bd1454c2e 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: 2024-01-05 21:26-0800\n"
-"PO-Revision-Date: 2024-01-07 00:27\n"
+"PO-Revision-Date: 2024-01-10 12:09\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po
index dc2f7dd6f..e32ca2de8 100644
--- a/src/locale/fr_FR/LC_MESSAGES/django.po
+++ b/src/locale/fr_FR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-01-05 21:26-0800\n"
-"PO-Revision-Date: 2024-01-07 00:27\n"
+"PO-Revision-Date: 2024-01-10 12:09\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
From 13f38bf3a1b582fe461d6e79cbd4963f70eb66c9 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Jan 2024 07:17:26 -0800
Subject: [PATCH 12/14] [Documentation] Add v2.3.3 changelog (#5346)
* Changelog v2.3.3 - GHA
* Fix PR categorization, as usual
---------
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
---
docs/changelog.md | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/docs/changelog.md b/docs/changelog.md
index 1954081b4..ca1750a90 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,33 @@
# Changelog
+## paperless-ngx 2.3.3
+
+### Enhancements
+
+- Enhancement: Explain behavior of unset app config boolean to user [@shamoon](https://github.com/shamoon) ([#5345](https://github.com/paperless-ngx/paperless-ngx/pull/5345))
+- Enhancement: title assignment placeholder error handling, fallback [@shamoon](https://github.com/shamoon) ([#5282](https://github.com/paperless-ngx/paperless-ngx/pull/5282))
+
+### Bug Fixes
+
+- Fix: Don't require the JSON user arguments field, interpret empty string as [@stumpylog](https://github.com/stumpylog) ([#5320](https://github.com/paperless-ngx/paperless-ngx/pull/5320))
+
+### Maintenance
+
+- Chore: Backend dependencies update [@stumpylog](https://github.com/stumpylog) ([#5336](https://github.com/paperless-ngx/paperless-ngx/pull/5336))
+- Chore: add pre-commit hook for codespell [@shamoon](https://github.com/shamoon) ([#5324](https://github.com/paperless-ngx/paperless-ngx/pull/5324))
+
+### All App Changes
+
+
+5 changes
+
+- Enhancement: Explain behavior of unset app config boolean to user [@shamoon](https://github.com/shamoon) ([#5345](https://github.com/paperless-ngx/paperless-ngx/pull/5345))
+- Enhancement: title assignment placeholder error handling, fallback [@shamoon](https://github.com/shamoon) ([#5282](https://github.com/paperless-ngx/paperless-ngx/pull/5282))
+- Chore: Backend dependencies update [@stumpylog](https://github.com/stumpylog) ([#5336](https://github.com/paperless-ngx/paperless-ngx/pull/5336))
+- Fix: Don't require the JSON user arguments field, interpret empty string as [@stumpylog](https://github.com/stumpylog) ([#5320](https://github.com/paperless-ngx/paperless-ngx/pull/5320))
+- Chore: add pre-commit hook for codespell [@shamoon](https://github.com/shamoon) ([#5324](https://github.com/paperless-ngx/paperless-ngx/pull/5324))
+
+
## paperless-ngx 2.3.2
### Bug Fixes
From 8a622181fc1c62895085bc0bb691b7ba86b24e00 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 11 Jan 2024 13:26:54 -0800
Subject: [PATCH 13/14] Chore(deps-dev): Bump jinja2 from 3.1.2 to 3.1.3
(#5352)
Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3.
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/jinja/compare/3.1.2...3.1.3)
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: indirect
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Pipfile.lock | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/Pipfile.lock b/Pipfile.lock
index 8212ea94c..76e66001a 100644
--- a/Pipfile.lock
+++ b/Pipfile.lock
@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
- "sha256": "eb0874641dee3902649f091d096800bd69f7b846f49df7398f5c32eb5cfd2152"
+ "sha256": "96529f734f51e6c41b88b81585d28de7ab9d3b6d3de33ec28d7daa0de6a40019"
},
"pipfile-spec": 6,
"requires": {},
@@ -2865,11 +2865,12 @@
},
"jinja2": {
"hashes": [
- "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852",
- "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"
+ "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa",
+ "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"
],
+ "index": "pypi",
"markers": "python_version >= '3.7'",
- "version": "==3.1.2"
+ "version": "==3.1.3"
},
"markdown": {
"hashes": [
From 4a52fc27d452aecf6ac0467a1d729442db0bc7e9 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Thu, 11 Jan 2024 21:13:51 -0800
Subject: [PATCH 14/14] Reset dev version string
---
src-ui/src/environments/environment.prod.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index cfac3ad9c..6c11da6cf 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '4',
appTitle: 'Paperless-ngx',
- version: '2.3.3',
+ version: '2.3.3-dev',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',