From 8bc4e5ee94c34e6fdacfdc6784bc3cbc483a0151 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 26 Jul 2026 02:56:06 -0700
Subject: [PATCH 01/20] Fix: fix frontend permissions display for stats/system
perms (#13305)
---
.../app/services/permissions.service.spec.ts | 12 ++++++++++++
src-ui/src/app/services/permissions.service.ts | 17 +++++++----------
2 files changed, 19 insertions(+), 10 deletions(-)
diff --git a/src-ui/src/app/services/permissions.service.spec.ts b/src-ui/src/app/services/permissions.service.spec.ts
index 1beb0204a..86c878545 100644
--- a/src-ui/src/app/services/permissions.service.spec.ts
+++ b/src-ui/src/app/services/permissions.service.spec.ts
@@ -108,6 +108,18 @@ describe('PermissionsService', () => {
actionKey: 'View', // PermissionAction.View
typeKey: 'Document', // PermissionType.Document
})
+ expect(
+ permissionsService.getPermissionKeys('view_global_statistics')
+ ).toEqual({
+ actionKey: 'View', // PermissionAction.View
+ typeKey: 'GlobalStatistics', // PermissionType.GlobalStatistics
+ })
+ expect(
+ permissionsService.getPermissionKeys('view_system_monitoring')
+ ).toEqual({
+ actionKey: 'View', // PermissionAction.View
+ typeKey: 'SystemMonitoring', // PermissionType.SystemMonitoring
+ })
})
it('correctly checks explicit global permissions', () => {
diff --git a/src-ui/src/app/services/permissions.service.ts b/src-ui/src/app/services/permissions.service.ts
index 1d319fac7..198df0a35 100644
--- a/src-ui/src/app/services/permissions.service.ts
+++ b/src-ui/src/app/services/permissions.service.ts
@@ -110,19 +110,16 @@ export class PermissionsService {
actionKey: string
typeKey: string
} {
- const matches = permissionStr.match(/(.+)_/)
let typeKey
let actionKey
- if (matches?.length > 0) {
- const action = matches[1]
- const actionIndex = Object.values(PermissionAction).indexOf(
- action as PermissionAction
- )
- if (actionIndex > -1) {
- actionKey = Object.keys(PermissionAction)[actionIndex]
- }
+ const actionIndex = Object.values(PermissionAction).findIndex((action) =>
+ permissionStr.startsWith(`${action}_`)
+ )
+ if (actionIndex > -1) {
+ const action = Object.values(PermissionAction)[actionIndex]
+ actionKey = Object.keys(PermissionAction)[actionIndex]
const typeIndex = Object.values(PermissionType).indexOf(
- permissionStr.replace(action, '%s') as PermissionType
+ permissionStr.replace(`${action}_`, '%s_') as PermissionType
)
if (typeIndex > -1) {
typeKey = Object.keys(PermissionType)[typeIndex]
From 423d4b9f2d78aaad04db4fc743daccc829104fac Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 26 Jul 2026 14:17:26 -0700
Subject: [PATCH 02/20] Fix: prevent search filter loss when closing document
with Escape key (#13317)
---
.../filter-editor/filter-editor.component.html | 2 +-
.../filter-editor/filter-editor.component.spec.ts | 6 +++---
.../document-list/filter-editor/filter-editor.component.ts | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
index 0cfc77e53..fb6365b54 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
@@ -25,7 +25,7 @@
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
index 18390ab17..7cc8f3638 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
@@ -2180,17 +2180,17 @@ describe('FilterEditorComponent', () => {
it('should support Enter / Esc key on text field', () => {
component.textFilterInput.nativeElement.value = 'foo'
component.textFilterInput.nativeElement.dispatchEvent(
- new KeyboardEvent('keyup', { key: 'Enter' })
+ new KeyboardEvent('keydown', { key: 'Enter' })
)
expect(component.textFilter).toEqual('foo')
component.textFilterInput.nativeElement.value = 'foo bar'
component.textFilterInput.nativeElement.dispatchEvent(
- new KeyboardEvent('keyup', { key: 'Escape' })
+ new KeyboardEvent('keydown', { key: 'Escape' })
)
expect(component.textFilter).toEqual('')
const blurSpy = jest.spyOn(component.textFilterInput.nativeElement, 'blur')
component.textFilterInput.nativeElement.dispatchEvent(
- new KeyboardEvent('keyup', { key: 'Escape' })
+ new KeyboardEvent('keydown', { key: 'Escape' })
)
expect(blurSpy).toHaveBeenCalled()
})
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
index 21aab346d..5566f9ecd 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
@@ -1312,7 +1312,7 @@ export class FilterEditorComponent
}
}
- textFilterKeyup(event: KeyboardEvent) {
+ textFilterKeydown(event: KeyboardEvent) {
if (event.key == 'Enter') {
const filterString = (
this.textFilterInput.nativeElement as HTMLInputElement
From ea1f3653a9b98e63ab2c04e67a07c548308a6bc3 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Sun, 26 Jul 2026 14:45:59 -0700
Subject: [PATCH 03/20] Fix: guard build_document_node against stale FK on
deleted correspondent/doc type (#13318)
---
src/paperless_ai/indexing.py | 24 ++++++++++-----
src/paperless_ai/tests/test_ai_indexing.py | 34 ++++++++++++++++++++++
2 files changed, 51 insertions(+), 7 deletions(-)
diff --git a/src/paperless_ai/indexing.py b/src/paperless_ai/indexing.py
index 4230edb8d..16aeda776 100644
--- a/src/paperless_ai/indexing.py
+++ b/src/paperless_ai/indexing.py
@@ -5,6 +5,7 @@ from datetime import timedelta
from typing import TYPE_CHECKING
from django.conf import settings
+from django.core.exceptions import ObjectDoesNotExist
from django.utils import timezone
from filelock import FileLock
from filelock import ReadWriteLock
@@ -167,6 +168,19 @@ def write_store(embed_model_name: str | None = None):
yield store
+def _safe_related_name(document: Document, field: str) -> str | None:
+ """
+ Returns the ``name`` of a related object (correspondent, document_type,
+ storage_path), or None if the FK is unset or points at a row that has
+ since been deleted (e.g. concurrently with this call).
+ """
+ try:
+ related = getattr(document, field)
+ except ObjectDoesNotExist:
+ return None
+ return related.name if related else None
+
+
def build_document_node(
document: Document,
*,
@@ -180,14 +194,10 @@ def build_document_node(
"document_id": str(document.id),
"title": document.title,
"tags": [t.name for t in document.tags.all()],
- "correspondent": document.correspondent.name
- if document.correspondent
- else None,
- "document_type": document.document_type.name
- if document.document_type
- else None,
+ "correspondent": _safe_related_name(document, "correspondent"),
+ "document_type": _safe_related_name(document, "document_type"),
"filename": document.filename,
- "storage_path": document.storage_path.name if document.storage_path else None,
+ "storage_path": _safe_related_name(document, "storage_path"),
"archive_serial_number": document.archive_serial_number,
"created": document.created.isoformat() if document.created else None,
"added": document.added.isoformat() if document.added else None,
diff --git a/src/paperless_ai/tests/test_ai_indexing.py b/src/paperless_ai/tests/test_ai_indexing.py
index c73959895..e69834810 100644
--- a/src/paperless_ai/tests/test_ai_indexing.py
+++ b/src/paperless_ai/tests/test_ai_indexing.py
@@ -8,7 +8,9 @@ from django.test import override_settings
from django.utils import timezone
from llama_index.core.schema import MetadataMode
+from documents.models import Correspondent
from documents.models import Document
+from documents.models import DocumentType
from documents.models import PaperlessTask
from documents.signals import document_consumption_finished
from documents.signals import document_updated
@@ -95,6 +97,38 @@ def test_build_document_node_structured_fields_in_metadata(
assert "modified" in node.metadata
+@pytest.mark.django_db
+def test_build_document_node_survives_concurrently_deleted_correspondent(
+ real_document: Document,
+) -> None:
+ """Regression test for #13314.
+
+ If a document's correspondent (or document type) is deleted after the
+ in-memory Document instance was loaded but before build_document_node
+ resolves the relation, accessing the FK must not raise -- it should
+ behave like an unset FK and produce None in the metadata instead of
+ aborting the whole indexing pass.
+ """
+ correspondent = Correspondent.objects.create(name="Stale Correspondent")
+ document_type = DocumentType.objects.create(name="Stale Type")
+ real_document.correspondent = correspondent
+ real_document.document_type = document_type
+ real_document.save()
+
+ # Re-fetch to get an instance whose correspondent/document_type relations
+ # are unresolved (not yet cached), mirroring a task that loaded the
+ # document before the concurrent deletion below.
+ stale_document = Document.objects.get(pk=real_document.pk)
+
+ correspondent.delete()
+ document_type.delete()
+
+ nodes = indexing.build_document_node(stale_document)
+ assert len(nodes) > 0
+ assert nodes[0].metadata["correspondent"] is None
+ assert nodes[0].metadata["document_type"] is None
+
+
@pytest.mark.django_db
def test_build_document_node_excludes_document_id_from_llm_context(
real_document: Document,
From 318520a0f1a012126f8d194fefc7b8837963fae2 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Sun, 26 Jul 2026 15:00:06 -0700
Subject: [PATCH 04/20] Fix: add docstring to DocumentClassifierSchema for
cleaner LLM tool description (#13315)
---
src/paperless_ai/base_model.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/paperless_ai/base_model.py b/src/paperless_ai/base_model.py
index 44fe75f5b..61f93b467 100644
--- a/src/paperless_ai/base_model.py
+++ b/src/paperless_ai/base_model.py
@@ -2,6 +2,8 @@ from pydantic import BaseModel
class DocumentClassifierSchema(BaseModel):
+ """Schema for document classification suggestions."""
+
title: str
tags: list[str]
correspondents: list[str]
From 3ba6d0325a21fb8f48129e81f93acfe50f7879f8 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Sun, 26 Jul 2026 15:11:27 -0700
Subject: [PATCH 05/20] Fix: clamp out-of-range MailRule.order and
ApplicationConfiguration DPI/page fields before smallint migration (#13316)
---
.../0007_optimize_integer_field_sizes.py | 18 +++++++++++++++
.../0002_optimize_integer_field_sizes.py | 22 +++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/src/paperless/migrations/0007_optimize_integer_field_sizes.py b/src/paperless/migrations/0007_optimize_integer_field_sizes.py
index 104fc1db0..9ecf4f9b9 100644
--- a/src/paperless/migrations/0007_optimize_integer_field_sizes.py
+++ b/src/paperless/migrations/0007_optimize_integer_field_sizes.py
@@ -5,12 +5,30 @@ from django.db import migrations
from django.db import models
+def clamp_applicationconfiguration_integer_fields(apps, schema_editor):
+ # Clamp barcode_dpi, barcode_max_pages, image_dpi and pages because of
+ # PositiveIntegerField --> PositiveSmallIntegerField
+ ApplicationConfiguration = apps.get_model("paperless", "ApplicationConfiguration")
+ ApplicationConfiguration.objects.filter(barcode_dpi__gt=32767).update(
+ barcode_dpi=32767,
+ )
+ ApplicationConfiguration.objects.filter(barcode_max_pages__gt=32767).update(
+ barcode_max_pages=32767,
+ )
+ ApplicationConfiguration.objects.filter(image_dpi__gt=32767).update(image_dpi=32767)
+ ApplicationConfiguration.objects.filter(pages__gt=32767).update(pages=32767)
+
+
class Migration(migrations.Migration):
dependencies = [
("paperless", "0006_applicationconfiguration_barcode_tag_split"),
]
operations = [
+ migrations.RunPython(
+ clamp_applicationconfiguration_integer_fields,
+ migrations.RunPython.noop,
+ ),
migrations.AlterField(
model_name="applicationconfiguration",
name="barcode_dpi",
diff --git a/src/paperless_mail/migrations/0002_optimize_integer_field_sizes.py b/src/paperless_mail/migrations/0002_optimize_integer_field_sizes.py
index 0542d1429..a00413e85 100644
--- a/src/paperless_mail/migrations/0002_optimize_integer_field_sizes.py
+++ b/src/paperless_mail/migrations/0002_optimize_integer_field_sizes.py
@@ -10,6 +10,24 @@ def clamp_mailrule_maximum_age(apps, schema_editor):
MailRule.objects.filter(maximum_age__gt=32767).update(maximum_age=32767)
+def clamp_mailrule_order(apps, schema_editor):
+ # The order field of MailRule is only used for relative sorting
+ # (account.rules.order_by("order")), so out-of-range values must be
+ # renumbered by rank rather than clamped to a single value, which
+ # would collapse distinct rules to the same order.
+ MailRule = apps.get_model("paperless_mail", "MailRule")
+ if (
+ MailRule.objects.filter(order__gt=32767).exists()
+ or MailRule.objects.filter(
+ order__lt=-32768,
+ ).exists()
+ ): # pragma: no cover
+ for index, rule_id in enumerate(
+ MailRule.objects.order_by("order", "pk").values_list("pk", flat=True),
+ ):
+ MailRule.objects.filter(pk=rule_id).update(order=index)
+
+
class Migration(migrations.Migration):
# The data update must commit before PostgreSQL rewrites the table, otherwise
# pending foreign-key trigger events can block the subsequent ALTER TABLE.
@@ -135,6 +153,10 @@ class Migration(migrations.Migration):
verbose_name="maximum age",
),
),
+ migrations.RunPython(
+ clamp_mailrule_order,
+ migrations.RunPython.noop,
+ ),
migrations.AlterField(
model_name="mailrule",
name="order",
From 317e534aa0c41f95ace6582a8018aeba315e185d Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 26 Jul 2026 15:36:03 -0700
Subject: [PATCH 06/20] Fix: ensure preview reload on live changes (#13321)
---
.../document-detail/document-detail.spec.ts | 59 ++++++++++++++++++-
.../pdf-viewer/pdf-viewer.component.spec.ts | 16 +++++
.../common/pdf-viewer/pdf-viewer.component.ts | 3 +-
.../document-detail.component.html | 1 +
.../document-detail.component.spec.ts | 1 +
.../document-detail.component.ts | 4 ++
6 files changed, 82 insertions(+), 2 deletions(-)
diff --git a/src-ui/e2e/document-detail/document-detail.spec.ts b/src-ui/e2e/document-detail/document-detail.spec.ts
index ba10745ec..99080910a 100644
--- a/src-ui/e2e/document-detail/document-detail.spec.ts
+++ b/src-ui/e2e/document-detail/document-detail.spec.ts
@@ -1,4 +1,4 @@
-import { expect, test } from '@playwright/test'
+import { expect, test, type WebSocketRoute } from '@playwright/test'
import path from 'node:path'
const REQUESTS_HAR = path.join(__dirname, 'requests/api-document-detail.har')
@@ -95,3 +95,60 @@ test('should support quick filters', async ({ page }) => {
.click()
await expect(page).toHaveURL(/tags__id__all=4&sort=created&reverse=1&page=1/)
})
+
+test('should finish reloading the preview after a remote document update', async ({
+ page,
+}) => {
+ let resolveStatusSocket: (socket: WebSocketRoute) => void
+ const statusSocketReady = new Promise((resolve) => {
+ resolveStatusSocket = resolve
+ })
+ await page.routeWebSocket(/\/ws\/status\/$/, (socket) => {
+ resolveStatusSocket(socket)
+ })
+ await page.routeFromHAR(REQUESTS_HAR, { notFound: 'fallback' })
+ let previewRequestCount = 0
+ page.on('request', (request) => {
+ if (request.url().includes('/api/documents/175/preview/')) {
+ previewRequestCount++
+ }
+ })
+ await page.goto('/documents/175/details')
+
+ await page.locator('pngx-document-detail').waitFor()
+ await expect(page.getByTitle('Storage path', { exact: true })).toHaveText(
+ /\w+/
+ )
+ const previewWasLoaded = await page.evaluate(() => {
+ const detail = document.querySelector('pngx-document-detail')
+ const component = (window as any).ng.getComponent(detail)
+ component.pdfPreviewLoaded({ numPages: 1 })
+ return component.previewLoaded()
+ })
+ expect(previewWasLoaded).toBe(true)
+ const previewRequestsBeforeReload = previewRequestCount
+
+ const statusSocket = await statusSocketReady
+ const documentReloaded = page.waitForResponse(
+ (response) =>
+ response.url().includes('/api/documents/175/?full_perms=true') &&
+ response.request().method() === 'GET'
+ )
+ statusSocket.send(
+ JSON.stringify({
+ type: 'document_updated',
+ data: {
+ document_id: 175,
+ modified: '2026-07-26T20:00:00Z',
+ },
+ })
+ )
+ await documentReloaded
+
+ await expect(
+ page.getByText('Document reloaded with latest changes.').first()
+ ).toBeVisible()
+ await expect
+ .poll(() => previewRequestCount)
+ .toBeGreaterThan(previewRequestsBeforeReload + 1)
+})
diff --git a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.spec.ts b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.spec.ts
index 3b6add68c..0e16ac2b2 100644
--- a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.spec.ts
+++ b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.spec.ts
@@ -283,6 +283,22 @@ describe('PngxPdfViewerComponent', () => {
expect(mockViewer.currentPageNumber).toBe(1)
})
+ it('reloads when the source revision changes', () => {
+ const resetSpy = jest.spyOn(component as any, 'resetViewerState')
+ const loadSpy = jest
+ .spyOn(component as any, 'loadDocument')
+ .mockImplementation(() => {})
+ component.src = 'test.pdf'
+ component.sourceRevision = 1
+
+ component.ngOnChanges({
+ sourceRevision: new SimpleChange(0, 1, false),
+ })
+
+ expect(resetSpy).toHaveBeenCalled()
+ expect(loadSpy).toHaveBeenCalled()
+ })
+
it('applies viewer state after view init when already loaded', () => {
const applySpy = jest.spyOn(component as any, 'applyViewerState')
;(component as any).hasLoaded = true
diff --git a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts
index c86294b9d..4a0478316 100644
--- a/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts
+++ b/src-ui/src/app/components/common/pdf-viewer/pdf-viewer.component.ts
@@ -43,6 +43,7 @@ export class PngxPdfViewerComponent
private readonly document = inject(DOCUMENT)
@Input() src!: string
+ @Input() sourceRevision = 0
@Input() password?: string
@Input() page?: number
@Output() pageChange = new EventEmitter()
@@ -93,7 +94,7 @@ export class PngxPdfViewerComponent
}
ngOnChanges(changes: SimpleChanges): void {
- if (changes['src'] || changes['password']) {
+ if (changes['src'] || changes['sourceRevision'] || changes['password']) {
this.resetViewerState()
if (this.src) {
this.loadDocument()
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html
index 83e5b4bfb..6ee6b442a 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.html
+++ b/src-ui/src/app/components/document-detail/document-detail.component.html
@@ -472,6 +472,7 @@
{
expect(openDoc.__changedFields).toEqual([])
expect(setDirtySpy).toHaveBeenCalledWith(openDoc, false)
expect(saveSpy).toHaveBeenCalled()
+ expect(component.previewRevision()).toBe(1)
})
it('should ignore incoming update for a different document id', () => {
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts
index f2cc502c0..3820f9ed1 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.ts
@@ -249,6 +249,7 @@ export class DocumentDetailComponent
titleSubject: Subject = new Subject()
readonly previewUrl = signal(undefined)
readonly pdfSource = signal(undefined)
+ readonly previewRevision = signal(0)
readonly pdfPassword = signal(undefined)
readonly thumbUrl = signal(undefined)
readonly previewText = signal(undefined)
@@ -609,6 +610,9 @@ export class DocumentDetailComponent
.subscribe()
}
this.updateComponent(useDoc)
+ if (forceRemote) {
+ this.previewRevision.update((revision) => revision + 1)
+ }
this.titleSubject
.pipe(
debounceTime(1000),
From f4e7a2e9e4a05dfb92732e4aab8739226f0a6523 Mon Sep 17 00:00:00 2001
From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 26 Jul 2026 22:38:16 +0000
Subject: [PATCH 07/20] Auto translate strings
---
src-ui/messages.xlf | 98 ++++++++++++++++++++++-----------------------
1 file changed, 49 insertions(+), 49 deletions(-)
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index dc09f48ef..615e5bde9 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -1277,7 +1277,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
@@ -2184,7 +2184,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3087,11 +3087,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3688,7 +3688,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3800,7 +3800,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
@@ -3811,7 +3811,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
@@ -3822,7 +3822,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
@@ -5724,7 +5724,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7966,88 +7966,88 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8058,67 +8058,67 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8129,14 +8129,14 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8147,102 +8147,102 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
From 8f017942d9fd4813515bb3a20373aa2a0de4fb32 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 26 Jul 2026 16:25:49 -0700
Subject: [PATCH 08/20] Chore: resolve npm provenance issues with chokidar and
semver (#13323)
---
src-ui/pnpm-workspace.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src-ui/pnpm-workspace.yaml b/src-ui/pnpm-workspace.yaml
index 0065ff09b..56df810fb 100644
--- a/src-ui/pnpm-workspace.yaml
+++ b/src-ui/pnpm-workspace.yaml
@@ -2,6 +2,9 @@ packages:
- "."
minimumReleaseAge: 10080
trustPolicy: no-downgrade
+trustPolicyExclude:
+ - "chokidar@4.0.3"
+ - "semver@6.3.1 || 5.7.2"
allowBuilds:
"@parcel/watcher": true
canvas: true
From eda79603fe64b4a3296a09bb33e4d81de18efc07 Mon Sep 17 00:00:00 2001
From: Sandro
Date: Mon, 27 Jul 2026 18:37:09 +0200
Subject: [PATCH 09/20] Documentation: fix PAPERLESS_AI_LLM_OUTPUT_LANGUAGE
heading level (#13341)
---
docs/configuration.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/configuration.md b/docs/configuration.md
index 9bbb63402..83bd25138 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -2135,7 +2135,7 @@ used with the OpenAI-compatible backend to target a custom provider or local gat
Defaults to None.
-### [`PAPERLESS_AI_LLM_OUTPUT_LANGUAGE=`](#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE) {#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE}
+#### [`PAPERLESS_AI_LLM_OUTPUT_LANGUAGE=`](#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE) {#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE}
: The language to use for AI suggestions (results may vary by LLM model). If not supplied, defaults to the user's UI language setting or None.
From 0c0faf7f80a6732894d1a4ada2251bd5f3dccef6 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Mon, 27 Jul 2026 09:51:31 -0700
Subject: [PATCH 10/20] Fixhancement: pass LLM output language to chat if
specified (#13340)
---
src/documents/tests/test_views.py | 31 +++++++++++++++++++++++++++
src/documents/views.py | 33 +++++++++++++++++++----------
src/paperless_ai/chat.py | 31 +++++++++++++++++++++++----
src/paperless_ai/tests/test_chat.py | 21 ++++++++++++++++++
4 files changed, 101 insertions(+), 15 deletions(-)
diff --git a/src/documents/tests/test_views.py b/src/documents/tests/test_views.py
index 343f2cc13..f64b6ea04 100644
--- a/src/documents/tests/test_views.py
+++ b/src/documents/tests/test_views.py
@@ -625,6 +625,37 @@ class TestAIChatStreamingView(DirectoriesMixin, TestCase):
)
self.assertEqual(response.status_code, 200)
self.assertEqual(response["Content-Type"], "text/event-stream")
+ mock_stream_chat.assert_called_once_with(
+ query_str="question",
+ documents=[self.document],
+ output_language=None,
+ )
+
+ @patch("documents.views.stream_chat_with_documents")
+ @patch("documents.views.get_objects_for_user_owner_aware")
+ @override_settings(AI_ENABLED=True)
+ def test_post_uses_user_display_language(
+ self,
+ mock_get_objects,
+ mock_stream_chat,
+ ) -> None:
+ UiSettings.objects.create(user=self.user, settings={"language": "de-de"})
+ self.grant_view_document_permission()
+ mock_get_objects.return_value = [self.document]
+ mock_stream_chat.return_value = iter([b"data"])
+
+ response = self.client.post(
+ self.ENDPOINT,
+ data='{"q": "question"}',
+ content_type="application/json",
+ )
+
+ self.assertEqual(response.status_code, 200)
+ mock_stream_chat.assert_called_once_with(
+ query_str="question",
+ documents=[self.document],
+ output_language="de-de",
+ )
@patch("documents.views.stream_chat_with_documents")
@override_settings(AI_ENABLED=True)
diff --git a/src/documents/views.py b/src/documents/views.py
index 64594a3e7..a024dd3c8 100644
--- a/src/documents/views.py
+++ b/src/documents/views.py
@@ -653,6 +653,20 @@ class TagViewSet(PermissionsAwareDocumentCountMixin, ModelViewSet[Tag]):
update_document_parent_tags(tag, new_parent)
+def _get_llm_output_language(ai_config: AIConfig, request) -> str | None:
+ output_language = ai_config.llm_output_language
+ if (
+ not output_language
+ and hasattr(request.user, "ui_settings")
+ and isinstance(
+ request.user.ui_settings.settings,
+ dict,
+ )
+ ):
+ output_language = request.user.ui_settings.settings.get("language")
+ return output_language
+
+
@extend_schema_view(**generate_object_with_permissions_schema(DocumentTypeSerializer))
class DocumentTypeViewSet(
PermissionsAwareDocumentCountMixin,
@@ -1514,16 +1528,7 @@ class DocumentViewSet(
if not ai_config.ai_enabled:
return HttpResponseBadRequest("AI is required for this feature")
- output_language = ai_config.llm_output_language
- if (
- not output_language
- and hasattr(request.user, "ui_settings")
- and isinstance(
- request.user.ui_settings.settings,
- dict,
- )
- ):
- output_language = request.user.ui_settings.settings.get("language") or None
+ output_language = _get_llm_output_language(ai_config=ai_config, request=request)
llm_cache_backend = (
f"{ai_config.llm_backend}:{output_language}"
if output_language
@@ -2265,8 +2270,14 @@ class ChatStreamingView(GenericAPIView[Any]):
Document,
)
+ output_language = _get_llm_output_language(ai_config=ai_config, request=request)
+
response = StreamingHttpResponse(
- stream_chat_with_documents(query_str=question, documents=documents),
+ stream_chat_with_documents(
+ query_str=question,
+ documents=documents,
+ output_language=output_language,
+ ),
content_type="text/event-stream",
)
return response
diff --git a/src/paperless_ai/chat.py b/src/paperless_ai/chat.py
index c3101130c..5b81146e5 100644
--- a/src/paperless_ai/chat.py
+++ b/src/paperless_ai/chat.py
@@ -28,11 +28,22 @@ CHAT_PROMPT_TMPL = (
"---------------------\n"
"Using only the context above, answer the query. "
"Do not use prior knowledge.\n"
+ "{output_language_line}"
"Query: {query_str}\n"
"Answer:"
)
+def _build_chat_prompt(output_language: str | None) -> str:
+ output_language_line = (
+ f"Respond in {output_language}.\n" if output_language is not None else ""
+ )
+ return CHAT_PROMPT_TMPL.replace(
+ "{output_language_line}",
+ output_language_line,
+ )
+
+
def _build_document_reference(
document: Document,
title: str | None = None,
@@ -79,15 +90,27 @@ def _format_chat_metadata_trailer(references: list[dict[str, int | str]]) -> str
)
-def stream_chat_with_documents(query_str: str, documents: list[Document]):
+def stream_chat_with_documents(
+ query_str: str,
+ documents: list[Document],
+ output_language: str | None = None,
+):
try:
- yield from _stream_chat_with_documents(query_str, documents)
+ yield from _stream_chat_with_documents(
+ query_str,
+ documents,
+ output_language=output_language,
+ )
except Exception as e:
logger.exception("Failed to stream document chat response: %s", e)
yield CHAT_ERROR_MESSAGE
-def _stream_chat_with_documents(query_str: str, documents: list[Document]):
+def _stream_chat_with_documents(
+ query_str: str,
+ documents: list[Document],
+ output_language: str | None = None,
+):
if not documents:
yield CHAT_NO_CONTENT_MESSAGE
return
@@ -125,7 +148,7 @@ def _stream_chat_with_documents(query_str: str, documents: list[Document]):
references = _get_document_references(documents, top_nodes)
- prompt_template = PromptTemplate(template=CHAT_PROMPT_TMPL)
+ prompt_template = PromptTemplate(template=_build_chat_prompt(output_language))
response_synthesizer = get_response_synthesizer(
llm=client.llm,
prompt_helper=get_rag_prompt_helper(
diff --git a/src/paperless_ai/tests/test_chat.py b/src/paperless_ai/tests/test_chat.py
index b55f9a03c..ae4005d87 100644
--- a/src/paperless_ai/tests/test_chat.py
+++ b/src/paperless_ai/tests/test_chat.py
@@ -12,6 +12,7 @@ from paperless_ai import chat
from paperless_ai import indexing
from paperless_ai.chat import CHAT_ERROR_MESSAGE
from paperless_ai.chat import CHAT_METADATA_DELIMITER
+from paperless_ai.chat import _build_chat_prompt
from paperless_ai.chat import stream_chat_with_documents
@@ -59,6 +60,26 @@ def assert_chat_output(
}
+@pytest.mark.parametrize(
+ ("output_language", "expected_language_line"),
+ [
+ (None, ""),
+ ("de-de", "Respond in de-de.\n"),
+ ],
+)
+def test_build_chat_prompt(
+ output_language,
+ expected_language_line,
+) -> None:
+ prompt = _build_chat_prompt(output_language)
+
+ assert "{output_language_line}" not in prompt
+ assert (
+ prompt.split("Do not use prior knowledge.\n", maxsplit=1)[1]
+ == f"{expected_language_line}Query: {{query_str}}\nAnswer:"
+ )
+
+
@pytest.mark.django_db
def test_stream_chat_with_one_document_retrieval(
mock_document,
From 14517062c4077d419c5fbe9581b1f28873aff9ec Mon Sep 17 00:00:00 2001
From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Jul 2026 16:53:33 +0000
Subject: [PATCH 11/20] Auto translate strings
---
src/locale/en_US/LC_MESSAGES/django.po | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po
index 81d524969..17017e129 100644
--- a/src/locale/en_US/LC_MESSAGES/django.po
+++ b/src/locale/en_US/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
+"POT-Creation-Date: 2026-07-27 16:52+0000\n"
"PO-Revision-Date: 2022-02-17 04:17\n"
"Last-Translator: \n"
"Language-Team: English\n"
@@ -1352,7 +1352,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2552
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1393,7 +1393,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4511
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1661,36 +1661,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:291 documents/views.py:2549
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1561
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1570
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2374 documents/views.py:2695
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4523
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4569
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4630
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4640
msgid "The share link bundle is unavailable."
msgstr ""
From 0e98a7f1ce102fb7c5f36ef55c134b15b6af4870 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Mon, 27 Jul 2026 10:23:43 -0700
Subject: [PATCH 12/20] Performance: Scope llm index updates to actually
modified documents (#13322)
* Perf: scope bulk_update_documents' LLM index refresh to the edited document ids instead of the whole library
* Perf: select_related/prefetch_related for the scoped LLM index batch
* Perf: select_related/prefetch_related for the full LLM index rebuild path
* Fix: address Copilot review findings on LLM index scoping
---
src/documents/tasks.py | 2 ++
src/documents/tests/test_tasks.py | 8 ++++++--
src/paperless_ai/indexing.py | 23 ++++++++++++++++++---
src/paperless_ai/tests/test_ai_indexing.py | 24 ++++++++++++++++++++++
4 files changed, 52 insertions(+), 5 deletions(-)
diff --git a/src/documents/tasks.py b/src/documents/tasks.py
index 7961af381..a5da8f1cf 100644
--- a/src/documents/tasks.py
+++ b/src/documents/tasks.py
@@ -311,6 +311,7 @@ def sanity_check(*, raise_on_error: bool = True) -> str:
def bulk_update_documents(document_ids) -> None:
from documents.search import get_backend
+ document_ids = list(document_ids)
documents = Document.objects.filter(id__in=document_ids)
for doc in documents:
@@ -331,6 +332,7 @@ def bulk_update_documents(document_ids) -> None:
if ai_config.llm_index_enabled:
update_llm_index(
rebuild=False,
+ document_ids=document_ids,
)
diff --git a/src/documents/tests/test_tasks.py b/src/documents/tests/test_tasks.py
index ca57219ad..0e3d3f2a5 100644
--- a/src/documents/tests/test_tasks.py
+++ b/src/documents/tests/test_tasks.py
@@ -401,6 +401,10 @@ class TestAIIndex(DirectoriesMixin, TestCase):
"documents.tasks.update_llm_index",
) as update_llm_index,
):
- tasks.bulk_update_documents([doc.pk for doc in docs])
+ doc_ids = [doc.pk for doc in docs]
+ tasks.bulk_update_documents(doc_ids)
self.assertEqual(update_document_in_llm_index.apply_async.call_count, 0)
- update_llm_index.assert_called_once()
+ update_llm_index.assert_called_once_with(
+ rebuild=False,
+ document_ids=doc_ids,
+ )
diff --git a/src/paperless_ai/indexing.py b/src/paperless_ai/indexing.py
index 16aeda776..b413e67c6 100644
--- a/src/paperless_ai/indexing.py
+++ b/src/paperless_ai/indexing.py
@@ -328,8 +328,16 @@ def update_llm_index(
*,
iter_wrapper: IterWrapper[Document] = identity,
rebuild=False,
+ document_ids: Iterable[int] | None = None,
) -> str:
- """Rebuild or incrementally update the LLM index."""
+ """Rebuild or incrementally update the LLM index.
+
+ ``document_ids``, when given, scopes an incremental update to just those
+ documents instead of scanning the whole library -- callers that already
+ know which documents changed (e.g. a bulk edit) should pass this to avoid
+ an O(library size) scan per call. Ignored whenever a rebuild actually
+ happens, since a rebuild always covers the whole library regardless.
+ """
with write_store() as store:
try:
with _exclude_readers():
@@ -345,7 +353,11 @@ def update_llm_index(
"LLM index migration requires re-embedding; forcing rebuild.",
)
rebuild = True
- documents = Document.objects.all()
+ documents = Document.objects.select_related(
+ "correspondent",
+ "document_type",
+ "storage_path",
+ ).prefetch_related("tags")
no_documents = not documents.exists()
# Fast exit before touching config: nothing to index and no existing index.
@@ -379,9 +391,14 @@ def update_llm_index(
store.add(nodes)
msg = "LLM index rebuilt successfully."
else:
+ scoped_documents = (
+ documents.filter(id__in=document_ids)
+ if document_ids is not None
+ else documents
+ )
existing = store.get_modified_times()
changed = 0
- for document in iter_wrapper(documents):
+ for document in iter_wrapper(scoped_documents):
doc_id = str(document.id)
if existing.get(doc_id) == document.modified.isoformat():
continue
diff --git a/src/paperless_ai/tests/test_ai_indexing.py b/src/paperless_ai/tests/test_ai_indexing.py
index e69834810..81b4c889c 100644
--- a/src/paperless_ai/tests/test_ai_indexing.py
+++ b/src/paperless_ai/tests/test_ai_indexing.py
@@ -197,6 +197,8 @@ def test_update_llm_index(
mock_queryset = MagicMock()
mock_queryset.exists.return_value = True
mock_queryset.__iter__.return_value = iter([real_document])
+ mock_queryset.select_related.return_value = mock_queryset
+ mock_queryset.prefetch_related.return_value = mock_queryset
mock_all.return_value = mock_queryset
build_document_node.return_value = []
indexing.update_llm_index(rebuild=True)
@@ -216,6 +218,8 @@ def test_update_llm_index_rebuilds_on_model_name_change(
mock_queryset = MagicMock()
mock_queryset.exists.return_value = True
mock_queryset.__iter__.return_value = iter([real_document])
+ mock_queryset.select_related.return_value = mock_queryset
+ mock_queryset.prefetch_related.return_value = mock_queryset
mock_all.return_value = mock_queryset
with patch(
"paperless_ai.indexing.get_configured_model_name",
@@ -228,6 +232,8 @@ def test_update_llm_index_rebuilds_on_model_name_change(
mock_queryset = MagicMock()
mock_queryset.exists.return_value = True
mock_queryset.__iter__.return_value = iter([real_document])
+ mock_queryset.select_related.return_value = mock_queryset
+ mock_queryset.prefetch_related.return_value = mock_queryset
mock_all.return_value = mock_queryset
with patch(
"paperless_ai.indexing.get_configured_model_name",
@@ -258,6 +264,8 @@ def test_update_llm_index_partial_update(
mock_queryset = MagicMock()
mock_queryset.exists.return_value = True
mock_queryset.__iter__.return_value = iter([real_document, doc2])
+ mock_queryset.select_related.return_value = mock_queryset
+ mock_queryset.prefetch_related.return_value = mock_queryset
mock_all.return_value = mock_queryset
indexing.update_llm_index(rebuild=True)
@@ -286,6 +294,22 @@ def test_update_llm_index_partial_update(
assert store.table_exists(), (
"Expected the vector store table to exist after incremental update"
)
+ before = store.get_modified_times()
+
+ # A further edit, scoped via document_ids to just doc3 -- doc2 must be
+ # left exactly as it was, proving document_ids restricts the scan
+ # instead of falling back to the whole library.
+ doc3.modified = timezone.now()
+ doc3.save()
+
+ result = indexing.update_llm_index(rebuild=False, document_ids=[doc3.pk])
+ assert result == "LLM index updated successfully."
+
+ with indexing.get_vector_store() as store:
+ after = store.get_modified_times()
+
+ assert after[str(doc3.pk)] == doc3.modified.isoformat()
+ assert after[str(doc2.pk)] == before[str(doc2.pk)]
@pytest.mark.django_db
From b19edd0b74eb8dd1d08ce36ddadb2802877e08b1 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Mon, 27 Jul 2026 12:33:26 -0700
Subject: [PATCH 13/20] Fix: dedupe permission-visible documents when combined
with multi-tag ALL filtering (#13331) (#13345)
The permission filter OR'd three querysets together on top of a
queryset that could already carry two independent tags__id__all
joins, letting a document that matched more than one branch (e.g.
unowned + group-permissioned) come back twice. Replaced it with a
single id__in filter against the existing permitted_document_ids
helper, which is join-free and can't hit this.
---
src/documents/filters.py | 27 +++++++
src/documents/permissions.py | 6 +-
src/documents/tests/test_api_documents.py | 88 +++++++++++++++++++++++
src/documents/views.py | 3 +-
4 files changed, 120 insertions(+), 4 deletions(-)
diff --git a/src/documents/filters.py b/src/documents/filters.py
index 427745424..d5dac705c 100644
--- a/src/documents/filters.py
+++ b/src/documents/filters.py
@@ -37,6 +37,7 @@ from drf_spectacular.utils import extend_schema_field
from guardian.utils import get_group_obj_perms_model
from guardian.utils import get_user_obj_perms_model
from rest_framework import serializers
+from rest_framework.filters import BaseFilterBackend
from rest_framework.filters import OrderingFilter
from rest_framework_guardian.filters import ObjectPermissionsFilter
@@ -50,6 +51,7 @@ from documents.models import ShareLink
from documents.models import ShareLinkBundle
from documents.models import StoragePath
from documents.models import Tag
+from documents.permissions import permitted_document_ids
if TYPE_CHECKING:
from collections.abc import Callable
@@ -1038,6 +1040,31 @@ class ObjectOwnedOrGrantedPermissionsFilter(ObjectPermissionsFilter):
return objects_with_perms | objects_owned | objects_unowned
+class DocumentPermissionsFilter(BaseFilterBackend):
+ """
+ A filter backend limiting Document results to those the requesting user
+ owns, are unowned, or has explicit (user- or group-level) view
+ permission on.
+
+ Unlike ``ObjectOwnedOrGrantedPermissionsFilter``, this does not build an
+ ``objects_with_perms | objects_owned | objects_unowned`` union of
+ querysets derived from the same base queryset. When that base queryset
+ already carries independent joins on a multi-valued relation (e.g. two
+ separate joins from ``tags__id__all`` filtering on two tags), each
+ OR-ed branch can end up pairing those joins' aliases differently,
+ letting more than one row out of the join's cross product satisfy the
+ combined WHERE -- returning the same document more than once. Filtering
+ via a single ``id__in`` against ``permitted_document_ids`` (a plain
+ subquery, not a join) sidesteps that entirely and is also cheaper than
+ guardian's join-based permission check.
+ """
+
+ def filter_queryset(self, request, queryset, view):
+ if request.user.is_superuser:
+ return queryset
+ return queryset.filter(id__in=permitted_document_ids(request.user))
+
+
class ObjectOwnedPermissionsFilter(ObjectPermissionsFilter):
"""
A filter backend that limits results to those where the requesting user
diff --git a/src/documents/permissions.py b/src/documents/permissions.py
index adfaaec1a..006b77a81 100644
--- a/src/documents/permissions.py
+++ b/src/documents/permissions.py
@@ -163,7 +163,7 @@ def set_permissions_for_object(
)
-def _permitted_document_ids(user):
+def permitted_document_ids(user):
"""
Return a queryset of document IDs the user may view, limited to non-deleted
documents. This intentionally avoids ``get_objects_for_user`` to keep the
@@ -220,7 +220,7 @@ def get_document_count_filter_for_user(user, related_name: str = "documents"):
# Superuser: no permission filtering needed
return Q(**{f"{related_name}__deleted_at__isnull": True})
- permitted_ids = _permitted_document_ids(user)
+ permitted_ids = permitted_document_ids(user)
return Q(**{f"{related_name}__id__in": permitted_ids})
@@ -311,7 +311,7 @@ def annotate_document_count_for_related_queryset(
queryset,
through_model=through_model,
related_object_field=related_object_field,
- document_ids=_permitted_document_ids(user),
+ document_ids=permitted_document_ids(user),
target_field=target_field,
)
diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py
index 2e3e9cbfc..edd9f3df3 100644
--- a/src/documents/tests/test_api_documents.py
+++ b/src/documents/tests/test_api_documents.py
@@ -14,6 +14,7 @@ from unittest import mock
import celery
from dateutil import parser
from django.conf import settings
+from django.contrib.auth.models import Group
from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
from django.core import mail
@@ -47,6 +48,8 @@ from documents.models import Workflow
from documents.models import WorkflowAction
from documents.models import WorkflowTrigger
from documents.signals.handlers import run_workflows
+from documents.tests.factories import DocumentFactory
+from documents.tests.factories import TagFactory
from documents.tests.utils import ConsumeTaskMixin
from documents.tests.utils import DirectoriesMixin
from documents.tests.utils import read_streaming_response
@@ -1212,6 +1215,91 @@ class TestDocumentApi(DirectoriesMixin, ConsumeTaskMixin, APITestCase):
[u1_doc1.id],
)
+ def test_document_owned_and_group_shared_not_duplicated_when_filtering_by_tags(
+ self,
+ ) -> None:
+ """
+ GIVEN:
+ - A document owned by a user and also shared with a group the user belongs to
+ WHEN:
+ - The user filters documents by more than one tag (tags__id__all)
+ THEN:
+ - The document is returned exactly once, not once per permission path
+ (regression test for https://github.com/paperless-ngx/paperless-ngx/issues/13331)
+ """
+ user = User.objects.create_user("user1")
+ user.user_permissions.add(*Permission.objects.filter(codename="view_document"))
+ group = Group.objects.create(name="group1")
+ user.groups.add(group)
+
+ tag1 = TagFactory()
+ tag2 = TagFactory()
+ doc = DocumentFactory(title="shared", owner=user)
+ doc.tags.add(tag1, tag2)
+ assign_perm("view_document", group, doc)
+
+ self.client.force_authenticate(user=user)
+ response = self.client.get(
+ f"/api/documents/?tags__id__all={tag1.id},{tag2.id}",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data["count"], 1)
+ self.assertEqual(response.data["results"][0]["id"], doc.id)
+
+ def test_document_permission_filter_excludes_unrelated_documents(self) -> None:
+ """
+ GIVEN:
+ - A document owned by one user, with no permission granted to another user
+ WHEN:
+ - The unrelated user requests the document list
+ THEN:
+ - The document does not appear in their results
+ """
+ owner = User.objects.create_user("owner1")
+ stranger = User.objects.create_user("stranger1")
+ stranger.user_permissions.add(
+ *Permission.objects.filter(codename="view_document"),
+ )
+
+ DocumentFactory(title="private", owner=owner)
+
+ self.client.force_authenticate(user=stranger)
+ response = self.client.get("/api/documents/")
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data["count"], 0)
+
+ def test_document_permission_filter_only_visible_to_group_members(self) -> None:
+ """
+ GIVEN:
+ - A document shared with a group via object permissions
+ WHEN:
+ - A group member and a non-member both request the document list
+ THEN:
+ - Only the group member sees the document
+ """
+ owner = User.objects.create_user("owner2")
+ member = User.objects.create_user("member1")
+ non_member = User.objects.create_user("nonmember1")
+ for u in (member, non_member):
+ u.user_permissions.add(*Permission.objects.filter(codename="view_document"))
+
+ group = Group.objects.create(name="group2")
+ member.groups.add(group)
+
+ doc = DocumentFactory(title="shared2", owner=owner)
+ assign_perm("view_document", group, doc)
+
+ self.client.force_authenticate(user=member)
+ response = self.client.get("/api/documents/")
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data["count"], 1)
+ self.assertEqual(response.data["results"][0]["id"], doc.id)
+
+ self.client.force_authenticate(user=non_member)
+ response = self.client.get("/api/documents/")
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data["count"], 0)
+
def test_pagination_results(self) -> None:
"""
GIVEN:
diff --git a/src/documents/views.py b/src/documents/views.py
index a024dd3c8..528d6ced5 100644
--- a/src/documents/views.py
+++ b/src/documents/views.py
@@ -133,6 +133,7 @@ from documents.file_handling import format_filename
from documents.filters import CorrespondentFilterSet
from documents.filters import CustomFieldFilterSet
from documents.filters import DocumentFilterSet
+from documents.filters import DocumentPermissionsFilter
from documents.filters import DocumentsOrderingFilter
from documents.filters import DocumentTypeFilterSet
from documents.filters import ObjectOwnedOrGrantedPermissionsFilter
@@ -986,7 +987,7 @@ class DocumentViewSet(
DjangoFilterBackend,
SearchFilter,
DocumentsOrderingFilter,
- ObjectOwnedOrGrantedPermissionsFilter,
+ DocumentPermissionsFilter,
)
filterset_class = DocumentFilterSet
search_fields = ("title", "correspondent__name", "effective_content")
From 693a111c5a5eb24d92640df15dd865967b2f896e Mon Sep 17 00:00:00 2001
From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Jul 2026 19:35:15 +0000
Subject: [PATCH 14/20] Auto translate strings
---
src/locale/en_US/LC_MESSAGES/django.po | 40 +++++++++++++-------------
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po
index 17017e129..8648046c8 100644
--- a/src/locale/en_US/LC_MESSAGES/django.po
+++ b/src/locale/en_US/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-27 16:52+0000\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
"PO-Revision-Date: 2022-02-17 04:17\n"
"Last-Translator: \n"
"Language-Team: English\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr ""
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1352,7 +1352,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2552
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1393,7 +1393,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4511
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1661,36 +1661,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2549
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1561
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1570
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2374 documents/views.py:2695
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4523
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4569
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4630
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4640
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
From 98b66fdf24a0cd7ae767e0e91094024b582319cf Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Mon, 27 Jul 2026 14:50:37 -0700
Subject: [PATCH 15/20] Perf: prefetch notes and custom fields for LLM index
text building (#13350)
build_llm_index_text queried Note and CustomFieldInstance (plus its
field FK) per document, uncovered by the earlier correspondent/type/
storage_path/tags prefetch fix. Add notes and custom_fields__field to
the rebuild and scoped document querysets, and read from doc.notes.all()
instead of a fresh Note.objects.filter() so the prefetch is actually used.
Co-authored-by: Claude Sonnet 5
---
src/paperless_ai/embedding.py | 3 +-
src/paperless_ai/indexing.py | 2 +-
src/paperless_ai/tests/test_ai_indexing.py | 39 +++++++++++++++++++--
src/paperless_ai/tests/test_embedding.py | 40 ++++++++++------------
4 files changed, 58 insertions(+), 26 deletions(-)
diff --git a/src/paperless_ai/embedding.py b/src/paperless_ai/embedding.py
index 4044d7f08..621b4e979 100644
--- a/src/paperless_ai/embedding.py
+++ b/src/paperless_ai/embedding.py
@@ -7,7 +7,6 @@ if TYPE_CHECKING:
from llama_index.core.base.embeddings.base import BaseEmbedding
from documents.models import Document
-from documents.models import Note
from paperless.config import AIConfig
from paperless.models import LLMEmbeddingBackend
from paperless.network import PinnedHostAsyncHTTPTransport
@@ -126,7 +125,7 @@ def build_llm_index_text(doc: Document) -> str:
# prepend. Notes and Custom Fields stay in the body: Notes can be long free
# text, Custom Fields are dynamic in count and best kept in the embedding.
lines = [
- f"Notes: {','.join([str(c.note) for c in Note.objects.filter(document=doc)])}",
+ f"Notes: {','.join([str(c.note) for c in doc.notes.all()])}",
]
for instance in doc.custom_fields.all():
diff --git a/src/paperless_ai/indexing.py b/src/paperless_ai/indexing.py
index b413e67c6..93b850cbf 100644
--- a/src/paperless_ai/indexing.py
+++ b/src/paperless_ai/indexing.py
@@ -357,7 +357,7 @@ def update_llm_index(
"correspondent",
"document_type",
"storage_path",
- ).prefetch_related("tags")
+ ).prefetch_related("tags", "notes", "custom_fields__field")
no_documents = not documents.exists()
# Fast exit before touching config: nothing to index and no existing index.
diff --git a/src/paperless_ai/tests/test_ai_indexing.py b/src/paperless_ai/tests/test_ai_indexing.py
index 81b4c889c..667b43d06 100644
--- a/src/paperless_ai/tests/test_ai_indexing.py
+++ b/src/paperless_ai/tests/test_ai_indexing.py
@@ -4,13 +4,18 @@ from unittest.mock import patch
import pytest
import pytest_mock
+from django.db import connection
from django.test import override_settings
+from django.test.utils import CaptureQueriesContext
from django.utils import timezone
from llama_index.core.schema import MetadataMode
from documents.models import Correspondent
+from documents.models import CustomField
+from documents.models import CustomFieldInstance
from documents.models import Document
from documents.models import DocumentType
+from documents.models import Note
from documents.models import PaperlessTask
from documents.signals import document_consumption_finished
from documents.signals import document_updated
@@ -296,14 +301,44 @@ def test_update_llm_index_partial_update(
)
before = store.get_modified_times()
- # A further edit, scoped via document_ids to just doc3 -- doc2 must be
+ # new doc, also touched by the scoped update below
+ doc4 = DocumentFactory.create(title="Test Document 4", added=timezone.now())
+
+ # A further edit, scoped via document_ids to doc3 + doc4 -- doc2 must be
# left exactly as it was, proving document_ids restricts the scan
# instead of falling back to the whole library.
doc3.modified = timezone.now()
doc3.save()
+ doc4.modified = timezone.now()
+ doc4.save()
- result = indexing.update_llm_index(rebuild=False, document_ids=[doc3.pk])
+ # Give both scoped documents a note and a custom field: build_llm_index_text
+ # reads both per document, so without the notes/custom_fields__field
+ # prefetch on scoped_documents, each additional document adds 3 more
+ # queries (N+1 regression) instead of the query count staying flat.
+ custom_field = CustomField.objects.create(
+ name="Priority",
+ data_type=CustomField.FieldDataType.STRING,
+ )
+ for doc in (doc3, doc4):
+ Note.objects.create(document=doc, note=f"a note on {doc.title}")
+ CustomFieldInstance.objects.create(
+ document=doc,
+ field=custom_field,
+ value_text="high",
+ )
+
+ with CaptureQueriesContext(connection) as ctx:
+ result = indexing.update_llm_index(
+ rebuild=False,
+ document_ids=[doc3.pk, doc4.pk],
+ )
assert result == "LLM index updated successfully."
+ # Notes/custom fields are prefetched in one batch query each (plus one
+ # more for custom_fields__field), not re-queried per document -- an N+1
+ # regression here would scale with document count instead of staying flat
+ # (7 with the prefetch vs. 10 without it, for these 2 documents).
+ assert len(ctx.captured_queries) <= 8
with indexing.get_vector_store() as store:
after = store.get_modified_times()
diff --git a/src/paperless_ai/tests/test_embedding.py b/src/paperless_ai/tests/test_embedding.py
index fa84d1acc..c5066c8d2 100644
--- a/src/paperless_ai/tests/test_embedding.py
+++ b/src/paperless_ai/tests/test_embedding.py
@@ -54,6 +54,7 @@ def mock_document():
cf2.field.name = "Field2"
cf2.value = "Value2"
doc.custom_fields.all = MagicMock(return_value=[cf1, cf2])
+ doc.notes.all = MagicMock(return_value=[])
return doc
@@ -219,28 +220,26 @@ def test_get_configured_model_name_explicit_overrides_default(mock_ai_config):
def test_build_llm_index_text(mock_document):
- with patch("documents.models.Note.objects.filter") as mock_notes_filter:
- mock_notes_filter.return_value = [
- MagicMock(note="Note1"),
- MagicMock(note="Note2"),
- ]
+ mock_document.notes.all = MagicMock(
+ return_value=[MagicMock(note="Note1"), MagicMock(note="Note2")],
+ )
- result = build_llm_index_text(mock_document)
+ result = build_llm_index_text(mock_document)
- # Structured fields live in node.metadata for LLM context -- not body text
- assert "Title: Test Title" not in result
- assert "Created: 2023-01-01" not in result
- assert "Tags: Tag1, Tag2" not in result
- assert "Document Type: Invoice" not in result
- assert "Correspondent: Test Correspondent" not in result
- assert "Filename:" not in result
- assert "Storage Path:" not in result
- assert "Archive Serial Number:" not in result
+ # Structured fields live in node.metadata for LLM context -- not body text
+ assert "Title: Test Title" not in result
+ assert "Created: 2023-01-01" not in result
+ assert "Tags: Tag1, Tag2" not in result
+ assert "Document Type: Invoice" not in result
+ assert "Correspondent: Test Correspondent" not in result
+ assert "Filename:" not in result
+ assert "Storage Path:" not in result
+ assert "Archive Serial Number:" not in result
- # Fields without a metadata equivalent stay in body text
- assert "Notes: Note1,Note2" in result
- assert "Content:\n\nThis is the document content." in result
- assert "Custom Field - Field1: Value1\nCustom Field - Field2: Value2" in result
+ # Fields without a metadata equivalent stay in body text
+ assert "Notes: Note1,Note2" in result
+ assert "Content:\n\nThis is the document content." in result
+ assert "Custom Field - Field1: Value1\nCustom Field - Field2: Value2" in result
def test_build_llm_index_text_normalizes_ocr_punctuation_runs(mock_document):
@@ -250,8 +249,7 @@ def test_build_llm_index_text_normalizes_ocr_punctuation_runs(mock_document):
"Keep short punctuation like INV-100 and ellipses..."
)
- with patch("documents.models.Note.objects.filter", return_value=[]):
- result = build_llm_index_text(mock_document)
+ result = build_llm_index_text(mock_document)
assert "Introduction 7" in result
assert "Hardware Limitation 9" in result
From 7eee8538ecb49eb126148e237f4429f8910b400f Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Mon, 27 Jul 2026 15:13:16 -0700
Subject: [PATCH 16/20] Performance: more performant filtering diacritic
normalization (#13347)
---
src-ui/src/app/utils/text-search.spec.ts | 16 ++++++++++++++++
src-ui/src/app/utils/text-search.ts | 11 +++++++++--
2 files changed, 25 insertions(+), 2 deletions(-)
diff --git a/src-ui/src/app/utils/text-search.spec.ts b/src-ui/src/app/utils/text-search.spec.ts
index daa432851..a1225c1d0 100644
--- a/src-ui/src/app/utils/text-search.spec.ts
+++ b/src-ui/src/app/utils/text-search.spec.ts
@@ -14,4 +14,20 @@ describe('text search utilities', () => {
expect(matchesSearchText('Tax\u00e9s 2026', 'taxe 26')).toBeTruthy()
expect(matchesSearchText('taxes 2026', 'tax receipt')).toBeFalsy()
})
+
+ it('matches a large set of tag names without blocking input', () => {
+ const tagNames = Array.from(
+ { length: 1280 },
+ (_, index) =>
+ `Customer Party ${index} Jos\u00e9 M\u00fcller \u00c5ngstr\u00f6m`
+ )
+
+ const start = performance.now()
+ const matches = tagNames.filter((name) => matchesSearchText(name, 'party'))
+ const duration = performance.now() - start
+
+ expect(matches).toHaveLength(tagNames.length)
+ // The previous implementation took roughly 500 ms for this workload.
+ expect(duration).toBeLessThan(250)
+ })
})
diff --git a/src-ui/src/app/utils/text-search.ts b/src-ui/src/app/utils/text-search.ts
index 883ace368..f7f552408 100644
--- a/src-ui/src/app/utils/text-search.ts
+++ b/src-ui/src/app/utils/text-search.ts
@@ -1,10 +1,17 @@
-import { normalizeSync } from 'normalize-diacritics'
+import { diacritics } from 'normalize-diacritics/diacritics'
export type SearchTextValue =
string | number | boolean | bigint | null | undefined
export function normalizeSearchText(value: SearchTextValue): string {
- return normalizeSync(String(value ?? '')).toLocaleLowerCase()
+ const normalized = diacritics.reduce(
+ (text, replacement) => {
+ return text.replace(replacement.diacritics, replacement.letter)
+ },
+ String(value ?? '')
+ )
+
+ return normalized.toLocaleLowerCase()
}
export function matchesSearchText(
From dcff067dc126236996ac9668daa8ee63147bbf85 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Mon, 27 Jul 2026 16:52:29 -0700
Subject: [PATCH 17/20] Fix: don't skip OCR/archive for tagged PDFs with no
actual text (#13351)
---
docs/configuration.md | 4 +--
src/documents/consumer.py | 5 ++--
src/documents/tests/test_consumer_archive.py | 16 +++++++----
src/paperless/parsers/tesseract.py | 6 ++--
.../tests/parsers/test_tesseract_parser.py | 28 +++++++++++++++++++
5 files changed, 47 insertions(+), 12 deletions(-)
diff --git a/docs/configuration.md b/docs/configuration.md
index 83bd25138..6529791f0 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -932,8 +932,8 @@ for display in the web interface.
| Document type | `never` | `auto` (default) | `always` |
| -------------------------- | ------- | -------------------------- | -------- |
| Scanned image (TIFF, JPEG) | No | **Yes** | Yes |
- | Image-based PDF | No | **Yes** (short/no text, untagged) | Yes |
- | Born-digital PDF | No | No (tagged or has embedded text) | Yes |
+ | Image-based PDF | No | **Yes** (no embedded text) | Yes |
+ | Born-digital PDF | No | No (has embedded text, optionally confirmed by tag) | Yes |
| Plain text, email, HTML | No | No | No |
| DOCX / ODT (via Tika) | Yes\* | Yes\* | Yes\* |
diff --git a/src/documents/consumer.py b/src/documents/consumer.py
index 7c01853c5..e7f026e71 100644
--- a/src/documents/consumer.py
+++ b/src/documents/consumer.py
@@ -160,13 +160,14 @@ def should_produce_archive(
_log.debug("Archive: yes — image document, ARCHIVE_FILE_GENERATION=auto")
return True
if mime_type == "application/pdf":
- if is_tagged_pdf(document_path):
+ text = extract_pdf_text(document_path)
+ has_text = text is not None and len(text) > 0
+ if has_text and is_tagged_pdf(document_path):
_log.debug(
"Archive: no — born-digital PDF (structure tags detected),"
" ARCHIVE_FILE_GENERATION=auto",
)
return False
- text = extract_pdf_text(document_path)
if text is None or len(text) <= PDF_TEXT_MIN_LENGTH:
_log.debug(
"Archive: yes — scanned PDF (text_length=%d ≤ %d),"
diff --git a/src/documents/tests/test_consumer_archive.py b/src/documents/tests/test_consumer_archive.py
index 265bd7bc6..c179162db 100644
--- a/src/documents/tests/test_consumer_archive.py
+++ b/src/documents/tests/test_consumer_archive.py
@@ -166,24 +166,28 @@ class TestShouldProduceArchive:
mocker: MockerFixture,
settings,
) -> None:
- """Tagged PDFs (e.g. Word exports) are treated as born-digital regardless of text length."""
+ """Tagged PDFs (e.g. Word exports) with real text are treated as born-digital, even below PDF_TEXT_MIN_LENGTH."""
settings.ARCHIVE_FILE_GENERATION = "auto"
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
+ mocker.patch("documents.consumer.extract_pdf_text", return_value="tiny")
parser = _parser_instance(can_produce=True, requires_rendition=False)
assert (
should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
is False
)
- def test_tagged_pdf_does_not_call_pdftotext(
+ def test_tagged_pdf_without_text_produces_archive(
self,
mocker: MockerFixture,
settings,
) -> None:
- """When a PDF is tagged, pdftotext is not invoked (fast path)."""
+ """A tagged PDF with no actual extractable text (e.g. some scanner firmware) is not
+ trusted as born-digital — the tag alone must not bypass OCR."""
settings.ARCHIVE_FILE_GENERATION = "auto"
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
- mock_extract = mocker.patch("documents.consumer.extract_pdf_text")
+ mocker.patch("documents.consumer.extract_pdf_text", return_value=None)
parser = _parser_instance(can_produce=True, requires_rendition=False)
- should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
- mock_extract.assert_not_called()
+ assert (
+ should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
+ is True
+ )
diff --git a/src/paperless/parsers/tesseract.py b/src/paperless/parsers/tesseract.py
index 2e0d791ea..78ce4c5c4 100644
--- a/src/paperless/parsers/tesseract.py
+++ b/src/paperless/parsers/tesseract.py
@@ -510,8 +510,10 @@ class RasterisedDocumentParser:
if mime_type == "application/pdf":
text_original = self.extract_text(None, document_path)
- original_has_text = is_tagged_pdf(document_path, log=self.log) or (
- text_original is not None and len(text_original) > PDF_TEXT_MIN_LENGTH
+ has_text = text_original is not None and len(text_original) > 0
+ original_has_text = has_text and (
+ is_tagged_pdf(document_path, log=self.log)
+ or len(text_original) > PDF_TEXT_MIN_LENGTH
)
else:
text_original = None
diff --git a/src/paperless/tests/parsers/test_tesseract_parser.py b/src/paperless/tests/parsers/test_tesseract_parser.py
index 0c086745c..e56992d0b 100644
--- a/src/paperless/tests/parsers/test_tesseract_parser.py
+++ b/src/paperless/tests/parsers/test_tesseract_parser.py
@@ -906,6 +906,34 @@ class TestSkipArchive:
assert tesseract_parser.archive_path is None
assert tesseract_parser.get_text()
+ def test_tagged_pdf_without_text_does_not_skip_ocr(
+ self,
+ mocker: MockerFixture,
+ tesseract_parser: RasterisedDocumentParser,
+ tesseract_samples_dir: Path,
+ ) -> None:
+ """
+ GIVEN:
+ - A PDF that reports itself as tagged (/MarkInfo /Marked true) but
+ has no actual extractable text (some scanner firmware produces
+ this — see GitHub issue #13349)
+ - Mode: auto, produce_archive=False
+ WHEN:
+ - Document is parsed
+ THEN:
+ - The tag alone is not trusted as "has text"; OCRmyPDF still runs
+ """
+ tesseract_parser.settings.mode = ModeChoices.AUTO
+ mocker.patch("paperless.parsers.tesseract.is_tagged_pdf", return_value=True)
+ mocker.patch.object(tesseract_parser, "extract_text", return_value=None)
+ mock_ocr = mocker.patch("ocrmypdf.ocr")
+ tesseract_parser.parse(
+ tesseract_samples_dir / "multi-page-images.pdf",
+ "application/pdf",
+ produce_archive=False,
+ )
+ mock_ocr.assert_called()
+
def test_tagged_pdf_produces_pdfa_archive_without_ocr(
self,
tesseract_parser: RasterisedDocumentParser,
From 0b588c2d3108a57319fe81bb18c95bed19fd5048 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Mon, 27 Jul 2026 17:25:52 -0700
Subject: [PATCH 18/20] Fix: prevent pdfjs highlight scrolling from affecting
the entire page (#13355)
---
.../common/preview-popup/preview-popup.component.html | 3 ++-
.../common/preview-popup/preview-popup.component.spec.ts | 4 ++++
.../common/preview-popup/preview-popup.component.ts | 6 ++++++
3 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.html b/src-ui/src/app/components/common/preview-popup/preview-popup.component.html
index 0bf21029b..84c65a49f 100644
--- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.html
+++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.html
@@ -1,6 +1,7 @@
+ autoClose="true" [popoverClass]="popoverClass()" [popperOptions]="popperOptions"
+ (mouseenter)="mouseEnterPreview()" (mouseleave)="mouseLeavePreview()" #popover="ngbPopover">
diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts
index 10a36d73c..3194729ff 100644
--- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts
+++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts
@@ -67,6 +67,10 @@ describe('PreviewPopupComponent', () => {
expect(component.useNativePdfViewer).toBeTruthy()
})
+ it('should use fixed positioning for the preview popover', () => {
+ expect(component.popperOptions({}).strategy).toEqual('fixed')
+ })
+
it('should render object if native PDF viewer enabled', () => {
settingsService.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, true)
component.popover.open()
diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.ts b/src-ui/src/app/components/common/preview-popup/preview-popup.component.ts
index ae271ffe4..fc7ce7e4b 100644
--- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.ts
+++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.ts
@@ -8,6 +8,7 @@ import {
ViewChild,
} from '@angular/core'
import { NgbPopover, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap'
+import { Options } from '@popperjs/core'
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { first, Subject, takeUntil } from 'rxjs'
import { Document } from 'src/app/data/document'
@@ -74,6 +75,11 @@ export class PreviewPopupComponent implements OnDestroy {
readonly popoverClass = signal('shadow popover-preview')
+ readonly popperOptions = (options: Partial): Partial => ({
+ ...options,
+ strategy: 'fixed',
+ })
+
get renderAsObject(): boolean {
return (this.isPdf && this.useNativePdfViewer) || !this.isPdf
}
From b2b2f7b488b2260be553b484b4084e61eccc1712 Mon Sep 17 00:00:00 2001
From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Jul 2026 00:27:34 +0000
Subject: [PATCH 19/20] Auto translate strings
---
src-ui/messages.xlf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 615e5bde9..9e98563f0 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -6438,14 +6438,14 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
From 674dab29df30f49c997e347d0a8a4f2d79ef3f57 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Jul 2026 20:12:46 -0700
Subject: [PATCH 20/20] New Crowdin translations by GitHub Action (#13308)
Co-authored-by: Crowdin Bot
---
src-ui/src/locale/messages.af_ZA.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.am_ET.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ar_AR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.be_BY.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.bg_BG.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ca_ES.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.cs_CZ.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.da_DK.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.de_CH.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.de_DE.xlf | 104 ++++++++++++-------------
src-ui/src/locale/messages.el_GR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.es_ES.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.et_EE.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.fa_IR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.fi_FI.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.fr_FR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.he_IL.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.hi_IN.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.hr_HR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.hu_HU.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.id_ID.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.it_IT.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ja_JP.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ko_KR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.lb_LU.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.lt_LT.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.lv_LV.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.mk_MK.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ms_MY.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.nl_NL.xlf | 104 ++++++++++++-------------
src-ui/src/locale/messages.no_NO.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.pl_PL.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.pt_BR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.pt_PT.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ro_RO.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.ru_RU.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.sk_SK.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.sl_SI.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.sq_AL.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.sr_CS.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.sv_SE.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.th_TH.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.tr_TR.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.uk_UA.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.vi_VN.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.zh_CN.xlf | 102 ++++++++++++------------
src-ui/src/locale/messages.zh_TW.xlf | 102 ++++++++++++------------
src/locale/af_ZA/LC_MESSAGES/django.po | 42 +++++-----
src/locale/am_ET/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ar_AR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/be_BY/LC_MESSAGES/django.po | 42 +++++-----
src/locale/bg_BG/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ca_ES/LC_MESSAGES/django.po | 42 +++++-----
src/locale/cs_CZ/LC_MESSAGES/django.po | 42 +++++-----
src/locale/da_DK/LC_MESSAGES/django.po | 42 +++++-----
src/locale/de_CH/LC_MESSAGES/django.po | 42 +++++-----
src/locale/de_DE/LC_MESSAGES/django.po | 42 +++++-----
src/locale/el_GR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/es_ES/LC_MESSAGES/django.po | 42 +++++-----
src/locale/et_EE/LC_MESSAGES/django.po | 42 +++++-----
src/locale/fa_IR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/fi_FI/LC_MESSAGES/django.po | 42 +++++-----
src/locale/fr_FR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/he_IL/LC_MESSAGES/django.po | 42 +++++-----
src/locale/hi_IN/LC_MESSAGES/django.po | 42 +++++-----
src/locale/hr_HR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/hu_HU/LC_MESSAGES/django.po | 42 +++++-----
src/locale/id_ID/LC_MESSAGES/django.po | 48 ++++++------
src/locale/it_IT/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ja_JP/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ko_KR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/lb_LU/LC_MESSAGES/django.po | 42 +++++-----
src/locale/lt_LT/LC_MESSAGES/django.po | 42 +++++-----
src/locale/lv_LV/LC_MESSAGES/django.po | 42 +++++-----
src/locale/mk_MK/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ms_MY/LC_MESSAGES/django.po | 42 +++++-----
src/locale/nl_NL/LC_MESSAGES/django.po | 42 +++++-----
src/locale/no_NO/LC_MESSAGES/django.po | 42 +++++-----
src/locale/pl_PL/LC_MESSAGES/django.po | 42 +++++-----
src/locale/pt_BR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/pt_PT/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ro_RO/LC_MESSAGES/django.po | 42 +++++-----
src/locale/ru_RU/LC_MESSAGES/django.po | 42 +++++-----
src/locale/sk_SK/LC_MESSAGES/django.po | 42 +++++-----
src/locale/sl_SI/LC_MESSAGES/django.po | 42 +++++-----
src/locale/sq_AL/LC_MESSAGES/django.po | 42 +++++-----
src/locale/sr_CS/LC_MESSAGES/django.po | 42 +++++-----
src/locale/sv_SE/LC_MESSAGES/django.po | 42 +++++-----
src/locale/th_TH/LC_MESSAGES/django.po | 42 +++++-----
src/locale/tr_TR/LC_MESSAGES/django.po | 42 +++++-----
src/locale/uk_UA/LC_MESSAGES/django.po | 42 +++++-----
src/locale/vi_VN/LC_MESSAGES/django.po | 42 +++++-----
src/locale/zh_CN/LC_MESSAGES/django.po | 42 +++++-----
src/locale/zh_TW/LC_MESSAGES/django.po | 42 +++++-----
94 files changed, 3389 insertions(+), 3389 deletions(-)
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index e7253b032..76313c092 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Voer wagwoord in
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Fout by ophaal van metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Fout by die laai van die inhoud:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Fout by ophaal van voorstelle.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Fout by bewaar van dokument
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.am_ET.xlf b/src-ui/src/locale/messages.am_ET.xlf
index 76de17302..ec754323e 100644
--- a/src-ui/src/locale/messages.am_ET.xlf
+++ b/src-ui/src/locale/messages.am_ET.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 8e3d44b84..874492637 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
خطأ أثناء تحميل المعاينة
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
أدخل كلمة المرور
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
خطأ في استرجاع البيانات الوصفية
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
حدث خطأ في تحميل المحتوى
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
المستند التالي
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
المستند السابق
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
حفظ المستند
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
خطأ في استرداد الاقتراحات.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
تم حفظ المستند "بنجاح.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
خطأ أثناء حفظ المستند
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
خطأ أثناء حذف المستند
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
خطأ أثناء تنفيذ العملية
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
احتواء الصفحة
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index 6ca1b01a3..d67d55b63 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Увядзіце пароль
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index f123b3cce..5261212f7 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Грешка при зареждане на визуализацията
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Отворете предварителен преглед
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Въведете парола
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Грешка при извличане на метаданни
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Възникна грешка при зареждане на съдържание:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Следващ документ
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Предишен документ
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Запазете документ
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Запази и затвори / следващ
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Грешка при извличане на предложения.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Документ "" запазен успешно.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Грешка при запазване на документа
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Грешка при изтриване на документа
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Тази операция ще пресъздаде архивен файл за този документ.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Архивният файл ще бъде отново генериран с текущите настройки.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Грешка при изпълнение на операцията
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Грешка при изтегляне на документа
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Побиране на страницата
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Възникна грешка при зареждането на tiff:
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index c9ee31200..99ac128b4 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Treure protecció de contrasenya
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Crear una còpia desprotegida de l'arxiu existent.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Inici
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error carregant previsualització
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Obrir previsualització
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Introdueix Contrasenya
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error recuperant les metadades
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Error carregant contingut:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document Actualitzat
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document actualitzat a .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Recarrega per descartar les edicions locals no desades i carregar la darrera versió remota.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Recarrega
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document recarregat amb els darrers reptes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document recarregat.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Següent document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Document Anterior
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Desar Document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Desa i tanca/següent
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error recuperant el contingut de la versió
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error recuperant els suggeriments.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" desat satisfactòriament.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error guardant document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error esborrant document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Aquesta operació recrearà l'arxivat per aquest document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Els arxius arxivats seran regenerats amb les opcions actuals.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executant operació
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error descarregant document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Encaix Pàgina
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error en executar l'edició del PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Entra la contrasenya actual abans d'intentar treure-la.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executant l'operació de treure contrasenya
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Impressió fallida.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error carregant document per imprimir.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Error al carregar tiff:
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 4a862cc6f..9f2b8dbce 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Odstranit ochranu heslem
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Vytvořit nechráněnou kopii nebo nahradit existující soubor.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Spustit
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Chyba při načítání náhledu
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Otevřít náhled
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Zadejte heslo
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Chyba při načítání metadat
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Při načítání obsahu došlo k chybě:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Další dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Předchozí dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Uložit dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Uložit a zavřít/další
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Chyba při načítání návrhů.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument „“ úspěšně uložen.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Chyba při ukládání dokumentu
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Chyba při mazání dokumentu
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Tato operace trvale obnoví archivní soubor pro tento dokument.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Archivní soubor bude znovu vytvořen s aktuálním nastavením.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Chyba při provádění operace
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Chyba při stahování dokumentu
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Přizpůsobení stránky
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Chyba při provádění operace editace PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Zadejte aktuální heslo před pokusem o jeho odstranění.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Chyba při provádění operace odstranění hesla
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Tisk selhal.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Chyba při načítání dokumentu pro tisk.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Došlo k chybě při načítání tiff:
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 7db70a32d..bcc0b4201 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Indtast adgangskode
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.de_CH.xlf b/src-ui/src/locale/messages.de_CH.xlf
index fffaa9982..1d57c79cc 100644
--- a/src-ui/src/locale/messages.de_CH.xlf
+++ b/src-ui/src/locale/messages.de_CH.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF-Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Kennwortschutz entfernen
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Starten
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Fehler beim Laden der Vorschau
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Vorschau öffnen
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Kennwort eingeben
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Fehler beim Abrufen der Metadaten
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Fehler beim Laden des Inhalts:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument aktualisiert
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument aktualisiert am .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Neu laden
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument mit den neuesten Änderungen neu geladen.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument neu geladen.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Nächstes Dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Vorheriges Dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Dokument speichern
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Speichern und schliessen / weiter
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Fehler beim Abrufen des Versionsinhalts
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Fehler beim Abrufen der Vorschläge.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument „“ erfolgreich gespeichert.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Fehler beim Speichern des Dokuments
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Fehler beim Löschen des Dokuments
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Fehler beim Ausführen der Aktion
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Fehler beim Herunterladen des Dokuments
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Seite einpassen
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Fehler beim Ausführen der PDF-Bearbeitung
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Fehler beim Entfernen des Kennworts
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Drucken fehlgeschlagen.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Fehler beim Laden des Dokuments für den Druck.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Fehler beim Laden des TIFF:
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index ca689a57a..d9cee2ef8 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF-Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -2520,7 +2520,7 @@
src/app/components/admin/tasks/tasks.component.ts
77
- LLM-Index
+ LLM-Indizierung
Empty Trash
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Kennwortschutz entfernen
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Starten
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Fehler beim Laden der Vorschau
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Vorschau öffnen
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Kennwort eingeben
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Fehler beim Abrufen der Metadaten
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Fehler beim Laden des Inhalts:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument aktualisiert
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument aktualisiert am .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Neu laden
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument mit den neuesten Änderungen neu geladen.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument neu geladen.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Nächstes Dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Vorheriges Dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Dokument speichern
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Speichern und schließen / weiter
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Fehler beim Abrufen des Versionsinhalts
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Fehler beim Abrufen der Vorschläge.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument „“ erfolgreich gespeichert.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Fehler beim Speichern des Dokuments „“
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Fehler beim Speichern des Dokuments
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Möchten Sie das Dokument „“ wirklich in den Papierkorb verschieben?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Fehler beim Löschen des Dokuments
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Erneute Verarbeitung für „“ wird im Hintergrund gestartet.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Fehler beim Ausführen der Aktion
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Fehler beim Herunterladen des Dokuments
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Seite einpassen
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
Der Teilungsvorgang für „“ wird im Hintergrund gestartet.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Fehler beim Ausführen der PDF-Bearbeitung
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Kennwortentfernung für „" wird im Hintergrund gestartet.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Fehler beim Entfernen des Kennworts
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Drucken fehlgeschlagen.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Fehler beim Laden des Dokuments für den Druck.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Fehler beim Laden des TIFF:
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index a2e27a865..8bbb7df98 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Εισαγωγή Κωδικού Πρόσβασης
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Σφάλμα ανάκτησης μεταδεδομένων
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Σφάλμα στην ανάκτηση προτάσεων.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Σφάλμα αποθήκευσης του εγγράφου
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Σφάλμα διαγραφής εγγράφου
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Σφάλμα εκτέλεσης λειτουργίας
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 99b2b68a4..0fb69954d 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor de PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Eliminar protección por contraseña
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Crear una copia sin protección o reemplazar el archivo existente.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Inicio
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error al cargar vista previa
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Abrir vista previa
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Introducir contraseña
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error al recuperar los metadatos
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Se ha producido un error al cargar el contenido:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Documento siguiente
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Documento anterior
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Guardar documento
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Guardar y cerrar / siguiente
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error al recuperar las sugerencias.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Documento "" guardado correctamente.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error al guardar el documento
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error al eliminar documento
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Esta operación recreará permanentemente el archivo de archivo para este documento.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
El archivo se regenerará con la configuración actual.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error al ejecutar la operación
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error al descargar el documento
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Ajuste de página
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error al ejecutar la operación de edición PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Se ha producido un error al cargar el tif:
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index f68ee5d63..ac8f53027 100644
--- a/src-ui/src/locale/messages.et_EE.xlf
+++ b/src-ui/src/locale/messages.et_EE.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index 5aff15188..a19cb6368 100644
--- a/src-ui/src/locale/messages.fa_IR.xlf
+++ b/src-ui/src/locale/messages.fa_IR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
پیش نمایش در حال بارگیری خطا
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
پیش نمایش باز
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
رمز ورود را وارد کنید
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
خطا در بازیابی ابرداده
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
سند بعدی
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
سند قبلی
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
سند را ذخیره کنید
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
ذخیره و بسته / بعدی
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
خطای بازیابی پیشنهادات.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
سند ذخیره خطا
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
خطای حذف سند
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
این عملیات دائمی پرونده بایگانی را برای این سند بازآفرینی می کند.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
پرونده بایگانی با تنظیمات فعلی دوباره تولید می شود.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
عملیات اجرای خطا
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
سند بارگیری خطا
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
صفحه مناسب
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index a641bb002..3211cc0f3 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Virhe esikatselua ladattaessa
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Avaa esikatselu
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Syötä salasana
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Virhe haettaessa metatietoja
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Sisällön lataamisessa tapahtui virhe:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Seuraava asiakirja
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Edellinen asiakirja
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Tallenna asiakirja
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Tallenna ja sulje / seuraava
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Virhe ehdotuksia noutaessa.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Asiakirja "" tallennettu onnistuneesti.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Virhe tallennettaessa asiakirjaa
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Virhe asiakirjaa poistaessa
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Virhe toimintoa suoritettaessa
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Sivun sovitus
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Tulostus epäonnistui.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index f98e3d991..cbea53f8c 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Éditeur PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Retirer la protection par mot de passe
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Créer une copie non protégée ou remplacer le fichier existant.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Démarrer
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Erreur du chargement de l'aperçu
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Ouvrir l’aperçu
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Saisir le mot de passe
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Erreur lors de la récupération des métadonnées
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Une erreur s'est produite lors du chargement du contenu :
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document a été mis à jour
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document a été mis à jour à .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Recharger pour refuser vos changements locaux non sauvegardés et charger la dernière version en ligne.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Recharger
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Documents rechargés avec les derniers changements.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document rechargé.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Document suivant
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Document précédent
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Enregistrer le document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Sauvegarder et fermer / suivant
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Erreur de récupération du contenu de la version
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Erreur lors de la récupération des suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document « » enregistré avec succès.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Erreur lors de la sauvegarde du document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Erreur lors de la sauvegarde du document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Erreur lors de la suppression du document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Cette action recréera définitivement le fichier d'archive pour ce document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Le fichier d'archive va être régénéré avec les paramètres actuels.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Erreur lors de l'exécution de l'opération
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Erreur lors du téléchargement du document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Ajustement de la page
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Erreur lors de l’exécution de l’opération de modification du PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Veuillez saisir le mot de passe actuel avant d'essayer de le supprimer.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Erreur lors de la suppression du mot de passe
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Impression échouée.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Erreur lors du chargement du document pour impression.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Une erreur s’est produite lors du chargement du tiff :
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index c0555786f..abe5c7794 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
עורך PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
הסר את הגנת הסיסמה
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
צור עותק ללא סיסמה או החלף את הקובץ הקיים.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
התחל
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
שגיאה בתצוגה מקדימה
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
פתח תצוגה מקדימה
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
הזן סיסמה
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
שגיאה באחזור נתונים
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
ארעה שגיאה בטעינת התוכן:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
המסמך הבא
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
המסמך הקודם
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
שמירת מסמך
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
שמירה וסגירה / הבא
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
שגיאה באחזור הצעות.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
המסמך "" נשמר בהצלחה.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
שגיאה בשמירת מסמך
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
שגיאה במחיקת מסמך
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
פעולה זו תבצע יצירה מחדש של קובץ הארכיון למסמך זה
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
קובץ הארכיון יווצר מחדש עם ההגדרות הנוכחיות.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
שגיאת הרצה
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
שגיאה בעת הורדת מסמך
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
התאם תצוגה לרוחב הדף
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
אירעה שגיאה בעת ביצוע פעולת הסרת הסיסמה
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
הדפסה נכשלה.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
אירעה שגיאה בעת טעינת המסמך להדפסה.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
שגיאה בעת טעינת קובץ tiff:
diff --git a/src-ui/src/locale/messages.hi_IN.xlf b/src-ui/src/locale/messages.hi_IN.xlf
index 5fb4aa384..2061b6cf9 100644
--- a/src-ui/src/locale/messages.hi_IN.xlf
+++ b/src-ui/src/locale/messages.hi_IN.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 78d5796ce..141982415 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Uređivač
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Ukloni zaštitu lozinkom
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Pogreška pri učitavanju pregleda
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Otvori pregled
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Unesi lozinku
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Greška pri dohvaćanju metapodataka
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Došlo je do pogreške prilikom učitavanja sadržaja:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument je ažuriran
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument je ažuriran u .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Učitajte ponovo da odbacite lokalne nespremljene izmjene i učitate najnoviju udaljenu verziju.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Učitaj ponovo
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument učitan ponovo s najnovijim izmjenama.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument učitan ponovo.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Sljedeći dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Prethodni dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Spremi dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Spremi i zatvori / sljedeći
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Greška pri dohvaćanju sadržaja verzije
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Greška pri dohvaćanju prijedloga.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument "" uspješno spremljen.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Greška pri spremanju dokumenta
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Greška pri brisanju dokumenta
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Ova operacija će trajno ponovo kreirati arhivsku datoteku za ovaj dokument.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Arhivska datoteka će se ponovo generirati s trenutnim postavkama.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Greška pri izvršavanju operacije
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Greška pri preuzimanju dokumenta
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Prilagodi stranicu
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Greška pri izvršavanju operacije uređivanja PDF-a
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Unesite trenutnu lozinku prije pokušaja uklanjanja.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Greška pri izvršavanju operacije uklanjanja lozinke
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Ispis nije uspio.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Greška pri učitavanju dokumenta za ispis.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Došlo je do greške pri učitavanju TIFF-a:
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index a82be6564..af215dc2f 100644
--- a/src-ui/src/locale/messages.hu_HU.xlf
+++ b/src-ui/src/locale/messages.hu_HU.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF szerkesztő
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Jelszóvédelem eltávolítása
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Hozzon létre egy nem védett másolatot, vagy cserélje ki a meglévő fájlt.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Indítás
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Hiba az előnézet betöltésekor
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Előnézet betöltése
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Jelszó megadása
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Hiba a metaadatok lekérdezésében
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Hiba történt a tartalom betöltése során:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Következő dokumentum
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Előző dokumentum
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Dokumentum mentése
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Mentés és bezárás / következő
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Hiba a javaslatok lekérdezésében.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
"" sikeresen elmentve.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Dokumentum mentési hiba
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Hiba a dokumentum törlésében
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Ez a művelet véglegesen újragenerálja a dokumentum archív fájlját.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Az archív fájl újragenerálódik majd a jelenlegi beállításokkal.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Hiba a művelet végrehajtásában
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Hiba a dokumentum letöltésekor
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Oldal illesztése
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Hiba a PDF szerkesztése közben
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Hiba tiff betöltésekor:
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index 58dd0a635..e1ba0c30d 100644
--- a/src-ui/src/locale/messages.id_ID.xlf
+++ b/src-ui/src/locale/messages.id_ID.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Mulai
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Kesalahan saat memuat pratinjau
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Buka pratinjau
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Masukan Kata Sandi
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Kesalahan saat mendapatkan metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Terjadi kesalahan saat memuat konten:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Dokumen berikutnya
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Dokumen sebelumnya
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Simpan dokumen
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Simpan dan tutup / lanjut
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Gagal mengambil saran.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokumen "" berhasil disimpan.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Kesalahan saat menyimpan dokumen
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Kesalahan saat menghapus dokumen
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Tindakan ini akan membuat ulang file arsip dokumen secara permanen.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
File arsip akan dibuat ulang dengan pengaturan saat ini.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Gagal menjalankan operasi
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Gagal mengunduh dokumen
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Sesuaikan halaman
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Gagal menjalankan proses edit PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Pencetakan gagal.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error memuat dokumen untuk dicetak.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Terjadi kesalahan saat memuat tiff:
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index a113b746c..5a1f2769d 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Rimuovi la protezione con password
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Crea una copia non protetta o sostituisci il file esistente.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Avvia
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Errore durante il caricamento dell'anteprima
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Apri anteprima
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Inserisci password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Errore durante il recupero dei metadati
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Si è verificato un errore durante il caricamento del contenuto:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Il documento è stato aggiornato
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Il documento è stato aggiornato alle .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Ricarica per eliminare le modifiche locali non salvate e caricare la versione remota più recente.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Ricarica
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Documento ricaricato con le ultime modifiche.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Documento ricaricato.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Documento successivo
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Documento precedente
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Salva documento
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Salva e chiudi / avanti
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Errore durante il recupero del contenuto della versione
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Errore durante il recupero dei suggerimenti.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Documento "" salvato correttamente.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Errore durante il salvataggio del documento ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Errore durante il salvataggio del documento
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Vuoi davvero spostare il documento "" nel cestino?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Errore durante l'eliminazione del documento
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Questa operazione ricreerà in modo permanente il file di archivio per questo documento.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Il file di archivio verrà rigenerato con le impostazioni correnti.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
L'operazione di rielaborazione per "" inizierà in background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Errore durante l'esecuzione dell'operazione
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Errore durante il download del documento
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Adatta alla pagina
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
L'operazione di modifica PDF per "" inizierà in background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Errore durante l'esecuzione dell'operazione di modifica PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Inserisci la password corrente prima di tentare di rimuoverla.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
L'operazione di rimozione della password per "" inizierà in background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Errore durante l'esecuzione dell'operazione di rimozione della password
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Stampa non riuscita.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Errore durante il caricamento del documento per la stampa.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Si è verificato un errore durante il caricamento del tiff:
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index e7a92fea7..5ba9f2188 100644
--- a/src-ui/src/locale/messages.ja_JP.xlf
+++ b/src-ui/src/locale/messages.ja_JP.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
プレビューの読み込みに失敗しました
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
プレビューを開く
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
パスワードを入力
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
メタデータの取得に失敗しました
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
コンテンツ: の読み込み中にエラーが発生しました
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
次のドキュメント
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
前のドキュメント
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
ドキュメントを保存
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
保存して閉じる / 次へ
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
提案の取得に失敗しました
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
ドキュメント「」が正常に保存されました。
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
ドキュメントの保存に失敗しました
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
ドキュメントの削除に失敗しました
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
この操作により、このドキュメントのアーカイブファイルが永続的に再作成されます。
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
アーカイブファイルは現在の設定で再生成されます。
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
操作の実行に失敗しました
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
ドキュメントのダウンロードに失敗しました
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
ページに合わせる
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
TIFFの読み込み中にエラーが発生しました:
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index b6405df3e..dab8a691b 100644
--- a/src-ui/src/locale/messages.ko_KR.xlf
+++ b/src-ui/src/locale/messages.ko_KR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF 편집기
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
미리보기 로딩 오류
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
미리보기 열기
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
비밀번호 입력
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
메타데이터를 가져오는데 실패하였습니다.
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
콘텐츠를 로드하는 동안 오류가 발생했습니다:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
다음 문서
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
이전 문서
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
문서 저장
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
저장 및 닫기 / 다음
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
추천을 가져오는데 실패하였습니다.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
문서 ""가 성공적으로 저장되었습니다.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
문서를 저장하는데 오류가 발생하였습니다.
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
문서 삭제 오류
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
이 작업을 수행하면 이 문서의 아카이브 파일이 영구적으로 다시 생성됩니다.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
아카이브 파일은 현재 설정으로 다시 생성됩니다.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
작업 수행중 오류가 발생하였습니다.
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
문서 다운로드 중 오류 발생
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
페이지 맞춤
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
인쇄 실패.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
tiff를 로드하는 동안 오류가 발생했습니다:
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 4226e3779..bfc412d7c 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Passwuert aginn
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 9882a0536..e92debeb7 100644
--- a/src-ui/src/locale/messages.lt_LT.xlf
+++ b/src-ui/src/locale/messages.lt_LT.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Įveskite slaptažodį
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Kitas dokumentas
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Ankstesnis dokumentas
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Išsaugoti dokumentą
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index f04dc7466..c92b42762 100644
--- a/src-ui/src/locale/messages.lv_LV.xlf
+++ b/src-ui/src/locale/messages.lv_LV.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf
index a5857190e..d1544d27a 100644
--- a/src-ui/src/locale/messages.mk_MK.xlf
+++ b/src-ui/src/locale/messages.mk_MK.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf
index 75a91a725..9d8258c40 100644
--- a/src-ui/src/locale/messages.ms_MY.xlf
+++ b/src-ui/src/locale/messages.ms_MY.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 832cac2a4..4a1b05352 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF-editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3572,7 +3572,7 @@
src/app/components/manage/document-attributes/document-attributes.component.ts
105
- Document types
+ Documentsoorten
Storage paths
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Verwijder wachtwoordbeveiliging
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Maak een niet-beveiligde kopie aan of vervang het bestaande bestand.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Begin
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Fout bij laden voorbeeld
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Voorbeeld openen
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Wachtwoord invoeren
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Fout bij ophalen metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Er is een fout opgetreden bij het laden van de inhoud:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Het document is bijgewerkt
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Volgend document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Vorig document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Document opslaan
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Opslaan en sluiten/volgende
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Fout bij ophalen suggesties.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" succesvol opgeslagen.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Fout bij opslaan document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Fout bij verwijderen document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Fout bij uitvoeren bewerking
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Fout bij downloaden document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Pagina passend maken
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Fout tijdens het bewerken van PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Voer het huidige wachtwoord in voordat je het verwijdert.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Fout bij het verwijderen van wachtwoord
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Printen mislukt.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Fout bij laden van document voor printen.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Fout bij het laden van tiff:
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 73063b02a..1dd3c9924 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF-redigeringsprogram
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Fjern passordbeskyttelse
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Opprett en ubeskyttet kopi eller erstatte den eksisterende filen.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Feil ved forhåndsvisning
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Åpne forhåndsvisning
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Skriv inn passord
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Feil ved henting av metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Det oppstod en feil ved lasting av innhold:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokumentet ble oppdatert
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokumentet ble oppdatert på .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Last på nytt for å forkaste dine lokale ulagrede redigeringer og last den nyeste eksterne versjonen.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Last på nytt
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokumentet lastet på nytt med siste endringer.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument lastet på nytt.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Neste dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Forrige dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Lagre dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Lagre og lukk / neste
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Feil ved henting av versjonsinnhold
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Feil ved henting av forslag.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument "" ble lagret.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Feil ved lagring av dokument ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Feil ved lagring av dokument
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Ønsker du virkelig å flytte dokumentet "" til papirkurven?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Feil ved sletting av dokumentet
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Denne operasjonen vil permanent gjenskape arkivfilen for dette dokumentet.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Arkivfilen vil bli generert på nytt med de nåværende innstillingene.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Ny import for "" vil begynne i bakgrunnen.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Feil under utføring av oppgaven
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Feil ved nedlasting av dokument
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Tilpass siden
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF redigering for "" vil begynne i bakgrunnen.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Feil under utføring av PDF-redigering
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Skriv inn nåværende passord før du prøver å fjerne det.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
PDF redigering for "" vil begynne i bakgrunnen.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Feil under fjerning av passord
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Utskrift mislyktes.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Feil ved lasting av dokument for utskrift.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
En feil oppstod under lasting av tiff:
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 1e50111c8..c7e590d37 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Edytor dokumentu PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Usuń ochronę hasłem
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Utwórz kopię bez zabezpieczenia lub zastąp istniejący plik.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Rozpocznij
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Błąd ładowania podglądu
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Otwórz podgląd
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Wprowadź hasło
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Błąd podczas pobierania metadanych
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Wystąpił błąd podczas ładowania zawartości:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument został zaktualizowany
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument został zaktualizowany w .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Załaduj ponownie, aby odrzucić lokalne niezapisane zmiany i załadować najnowszą wersję zdalną.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Przeładuj
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument ponownie załadowany z najnowszymi zmianami.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument został przeładowany.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Następny dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Poprzedni dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Zapisz dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Zapisz i zamknij / następny
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Błąd podczas pobierania zawartości wersji
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Błąd podczas pobierania sugestii.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument "" zapisany pomyślnie.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Błąd podczas zapisywania dokumentu
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Błąd usuwania dokumentu
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Błąd podczas wykonywania operacji
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Błąd pobierania dokumentu
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Dopasuj do strony
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Błąd podczas edycji dokumentu PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Proszę wprowadzić aktualne hasło przed próbą jego usunięcia.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Błąd podczas operacji usuwania hasła
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Błąd drukowania.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Błąd ładowania dokumentu do wydruku.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Wystąpił błąd podczas ładowania pliku TIFF:
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 3626764c7..34f2c382e 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor de PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remover a proteção por senha
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Crie uma cópia sem proteção ou substitua o arquivo existente.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Iniciar
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7073,7 +7073,7 @@ Erro ao enviar documentos por e-mail
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Erro ao carregar pré-visualização
@@ -7081,7 +7081,7 @@ Erro ao enviar documentos por e-mail
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Abrir pré-visualização
@@ -8787,7 +8787,7 @@ Erro ao enviar documentos por e-mail
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Digite a senha
@@ -8795,7 +8795,7 @@ Erro ao enviar documentos por e-mail
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Erro ao recuperar metadados
@@ -8803,11 +8803,11 @@ Erro ao enviar documentos por e-mail
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Ocorreu um erro ao carregar o conteúdo:
@@ -8815,7 +8815,7 @@ Erro ao enviar documentos por e-mail
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8823,7 +8823,7 @@ Erro ao enviar documentos por e-mail
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8831,7 +8831,7 @@ Erro ao enviar documentos por e-mail
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8839,7 +8839,7 @@ Erro ao enviar documentos por e-mail
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8847,7 +8847,7 @@ Erro ao enviar documentos por e-mail
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8855,7 +8855,7 @@ Erro ao enviar documentos por e-mail
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8863,7 +8863,7 @@ Erro ao enviar documentos por e-mail
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Próximo documento
@@ -8871,7 +8871,7 @@ Erro ao enviar documentos por e-mail
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Documento anterior
@@ -8879,7 +8879,7 @@ Erro ao enviar documentos por e-mail
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8891,7 +8891,7 @@ Erro ao enviar documentos por e-mail
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Salvar documento
@@ -8899,7 +8899,7 @@ Erro ao enviar documentos por e-mail
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Salvar e fechar / próximo
@@ -8907,7 +8907,7 @@ Erro ao enviar documentos por e-mail
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8915,7 +8915,7 @@ Erro ao enviar documentos por e-mail
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Erro ao recuperar sugestões.
@@ -8923,11 +8923,11 @@ Erro ao enviar documentos por e-mail
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Documento "" salvo com sucesso.
@@ -8935,7 +8935,7 @@ Erro ao enviar documentos por e-mail
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8943,7 +8943,7 @@ Erro ao enviar documentos por e-mail
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Erro ao salvar documento
@@ -8951,7 +8951,7 @@ Erro ao enviar documentos por e-mail
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8959,7 +8959,7 @@ Erro ao enviar documentos por e-mail
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8971,7 +8971,7 @@ Erro ao enviar documentos por e-mail
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Erro ao apagar documento
@@ -8979,7 +8979,7 @@ Erro ao enviar documentos por e-mail
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8991,7 +8991,7 @@ Erro ao enviar documentos por e-mail
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Essa operação irá recriar permanentemente o arquivo para este documento.
@@ -8999,7 +8999,7 @@ Erro ao enviar documentos por e-mail
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Os arquivos serão re-gerados com as configurações atuais.
@@ -9007,7 +9007,7 @@ Erro ao enviar documentos por e-mail
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9015,7 +9015,7 @@ Erro ao enviar documentos por e-mail
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Erro ao executar a operação de divisão
@@ -9023,7 +9023,7 @@ Erro ao enviar documentos por e-mail
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Erro ao baixar o documento
@@ -9031,7 +9031,7 @@ Erro ao enviar documentos por e-mail
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Ajustar à Página
@@ -9039,7 +9039,7 @@ Erro ao enviar documentos por e-mail
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9047,7 +9047,7 @@ Erro ao enviar documentos por e-mail
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Erro ao executar a operação de divisão
@@ -9055,7 +9055,7 @@ Erro ao enviar documentos por e-mail
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Digite a senha atual antes de tentar removê-la.
@@ -9063,7 +9063,7 @@ Erro ao enviar documentos por e-mail
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9071,7 +9071,7 @@ Erro ao enviar documentos por e-mail
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Erro ao executar operação de remoção de senha
@@ -9079,7 +9079,7 @@ Erro ao enviar documentos por e-mail
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Impressão falhou.
@@ -9087,7 +9087,7 @@ Erro ao enviar documentos por e-mail
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Erro ao carregar o documento para impressão.
@@ -9095,11 +9095,11 @@ Erro ao enviar documentos por e-mail
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Ocorreu um erro ao carregar tiff:
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 72760e120..2b13371b7 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Abrir pré-visualização
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Introduzir Palavra-Passe
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Erro ao obter os metadados
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Ocurreu um erro ao carregar o conteúdo:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Erro ao obter sugestões.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Erro ao gravar documento
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 6488aa354..6fe91c215 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Editor PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Elimină protecția prin parolă
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Creează o copie neprotejată sau înlocuiește fișierul existent.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Pornire
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Eroare la încărcarea previzualizării
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Deschide previzualizarea
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Introdu Parola
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Eroare la preluarea metadatelor
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
A apărut o eroare la încărcarea conținutului:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Următorul document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Documentul anterior
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Salvează documentul
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Salvează și închide / următorul
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Eroare la preluarea sugestiilor.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Documentul "salvat cu succes.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Eroare la salvarea documentului
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Eroare la ștergerea documentului
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Această operație va recrea definitiv fișierul arhivă pentru acest document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Fişierul arhivă va fi re-generat cu setările curente.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Eroare la executarea operațiunii
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Eroare la descărcarea documentului
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Potrivire pagină
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Eroare la executarea operaţiei de editare PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Te rugăm să introduci parola curentă înainte de a încerca să o elimini.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Eroare la executarea operaţiei de eliminare a parolei
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Imprimare eșuată.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Eroare la încărcarea documentului pentru imprimare.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
S-a produs o eroare la încărcarea tiff-ului:
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 308ab6655..e9e03e13b 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Редактор PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Ошибка при загрузке предпросмотра
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Открыть предпросмотр
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Введите пароль
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Ошибка при получении метаданных
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Произошла ошибка при загрузке контента:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Следующий документ
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Предыдущий документ
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Сохранить документ
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Сохранить и закрыть / далее
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Ошибка при получении предложений.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Документ "" успешно сохранён.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Ошибка при сохранении документа
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Ошибка удаления документа
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Это действие перезапишет файл архива для этого документа.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Файл архива будет сгенерирован с текущими настройками.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Ошибка при выполнении операции
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Ошибка скачивания документа
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Вместить страницу
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Ошибка при выполнении операции редактирования PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Печать не удалась.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Ошибка загрузки документа для печати.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Произошла ошибка при загрузке tiff:
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index 15a153834..4874fde2e 100644
--- a/src-ui/src/locale/messages.sk_SK.xlf
+++ b/src-ui/src/locale/messages.sk_SK.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Zadajte Heslo
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Chyba pri získavaní metadát
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Vyskytla sa chyba počas nahrávania obsahu:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Chyba pri získavaní odporúčaní.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Chyba pri ukladaní dokumentu
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Error deleting document
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 228c9465f..d291be34f 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Urejevalnik PDF
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Odstranite zaščito z geslom
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Ustvarite nezaščiteno kopijo ali zamenjajte obstoječo datoteko.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Začni
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Napaka pri nalaganju predogleda
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Odpri predogled
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Vnesi geslo
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Napaka pri pridobivanju metapodatkov
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Napaka pri nalaganju vsebine:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument je bil posodobljen
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument je bil posodobljen ob .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Ponovno naloži, da zavržeš lokalne neshranjene spremembe in naložiš najnovejšo oddaljeno različico.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Ponovno naloži
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument je bil ponovno naložen z najnovejšimi spremembami.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument je bil ponovno naložen.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Naslednji dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Prejšnji dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Shrani dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Shrani in zapri / naprej
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Napaka pri pridobivanju vsebine različice
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Napaka pri pridobivanju priporočil.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument "" je bil uspešno shranjen.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Napaka pri shranjevanju dokumenta ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Napaka pri shranjevanju dokumenta
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Ali res želite premakniti dokument "" v koš?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Napaka pri brisanju dokumenta
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
To dejanje bo dokončno poustvarilo arhivsko datoteko za izbran dokument.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Arhivska datoteka bo poustvarjena s trenutnimi nastavitvami.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
V ozadju se bo začel postopek ponovne obdelave za "".
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Napaka pri izvajanju operacije
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Napaka pri prenosu dokumenta
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Prileganje strani
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
Urejanje PDF-ja za "" se bo začelo v ozadju.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Napaka pri urejanju PDF
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Preden poskusite odstraniti geslo, ga vnesite.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Operacija odstranitve gesla za "" se bo začela v ozadju.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Napaka pri izvajanju odstranitve gesla
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Tiskanje ni uspelo.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Napaka pri nalaganju dokumenta za tiskanje.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Pri nalaganju datoteke tiff je prišlo do napake:
diff --git a/src-ui/src/locale/messages.sq_AL.xlf b/src-ui/src/locale/messages.sq_AL.xlf
index 114ebee87..0a43b5def 100644
--- a/src-ui/src/locale/messages.sq_AL.xlf
+++ b/src-ui/src/locale/messages.sq_AL.xlf
@@ -1399,7 +1399,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2359,7 +2359,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3339,11 +3339,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4003,7 +4003,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4127,7 +4127,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
[SQ] Remove password protection
@@ -4139,7 +4139,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4151,7 +4151,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
[SQ] Start
@@ -6275,7 +6275,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7073,7 +7073,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
[SQ] Error loading preview
@@ -7081,7 +7081,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
[SQ] Open preview
@@ -8787,7 +8787,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Enter Password
@@ -8795,7 +8795,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
[SQ] Error retrieving metadata
@@ -8803,11 +8803,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
[SQ] An error occurred loading content:
@@ -8815,7 +8815,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8823,7 +8823,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8831,7 +8831,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
[SQ] Reload to discard your local unsaved edits and load the latest remote version.
@@ -8839,7 +8839,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
[SQ] Reload
@@ -8847,7 +8847,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8855,7 +8855,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8863,7 +8863,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
[SQ] Next document
@@ -8871,7 +8871,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
[SQ] Previous document
@@ -8879,7 +8879,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8891,7 +8891,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8899,7 +8899,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8907,7 +8907,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
[SQ] Error retrieving version content
@@ -8915,7 +8915,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
[SQ] Error retrieving suggestions.
@@ -8923,11 +8923,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8935,7 +8935,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8943,7 +8943,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
[SQ] Error saving document
@@ -8951,7 +8951,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8959,7 +8959,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8971,7 +8971,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
[SQ] Error deleting document
@@ -8979,7 +8979,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8991,7 +8991,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
[SQ] This operation will permanently recreate the archive file for this document.
@@ -8999,7 +8999,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
[SQ] The archive file will be re-generated with the current settings.
@@ -9007,7 +9007,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9015,7 +9015,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
[SQ] Error executing operation
@@ -9023,7 +9023,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
[SQ] Error downloading document
@@ -9031,7 +9031,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
[SQ] Page Fit
@@ -9039,7 +9039,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9047,7 +9047,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
[SQ] Error executing PDF edit operation
@@ -9055,7 +9055,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
[SQ] Please enter the current password before attempting to remove it.
@@ -9063,7 +9063,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9071,7 +9071,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
[SQ] Error executing password removal operation
@@ -9079,7 +9079,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
[SQ] Print failed.
@@ -9087,7 +9087,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
[SQ] Error loading document for printing.
@@ -9095,11 +9095,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
[SQ] An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 21c9be186..d33e17fe5 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF uređivač
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Uklonite zaštitu lozinkom
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Napravite nezaštićenu kopiju ili zamenite postojeću datoteku.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Pokrеni
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Greška prilikom učitavanja pregleda
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Otvori pregled
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Unesite lozinku
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Greška pri preuzimanju metapodataka
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Greške se pojavila prilikom učitavanja sadržaja:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument je ažuriran
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Dokument je ažuriran u .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Ponovo učitajte da biste odbacili lokalne nesačuvane izmene i učitali najnoviju udaljenu verziju.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Osveži
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument je ponovo učitan sa najnovijim izmenama.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument je ponovo učitan.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Sledeći dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Prethodni dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Sačuvaj dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Sačuvaj i zatvori / sledeće
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Greška pri preuzimanju sadržaja verzije
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Greška pri preuzimanju predloga.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Dokument "" je sačuvan uspešno.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Greška prilikom čuvanja dokumenta
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Greška prilikom brisanja dokumenta
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Ova akcija će trajno ponovo kreirati arhivski fajl za ovaj dokument.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Arhivski fajl će biti ponovo generisan sa trenutnim podešavanjima.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Greška prilikom izvršavanja operacije
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Greška prilikom preuzimanja dokumenta
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Prilagodi stranicu
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Greška pri izvršavanju operacije uređivanja PDF-a
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Molimo vas da unesete trenutnu lozinku pre nego što pokušate da je uklonite.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Greška pri izvršavanju operacije uklanjanja lozinke
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Štampanje nije uspelo.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Greška pri učitavanju dokumenta za štampanje.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Došlo je do greške prilikom učitavanja TIFF-a:
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 8502e4ea9..2d15833aa 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF-redigerare
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Ta bort lösenordsskydd
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Fel vid inläsning av förhandsgranskning
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Öppna förhandsvisning
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Ange lösenord
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Fel vid hämtning av metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Ett fel uppstod när innehållet laddades:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Dokument uppdaterades
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Ladda om
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Dokument laddat om med senaste ändringarna.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Dokument laddat om.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Nästa dokument
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Föregående dokument
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Spara dokument
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Spara och stäng / nästa
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Fel vid hämtning av versionsinnehåll
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Fel vid hämtning av förslag.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Kunde inte spara dokumentet
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Fel vid borttagning av dokument
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Fel vid hämtning av dokument
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Utskrift misslyckades.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Fel vid inläsning av dokument för utskrift.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index bd9ab093d..e8a53835c 100644
--- a/src-ui/src/locale/messages.th_TH.xlf
+++ b/src-ui/src/locale/messages.th_TH.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Error loading preview
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Open preview
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
กรอกรหัสผ่าน
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Error retrieving metadata
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
An error occurred loading content:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Next document
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Previous document
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Save document
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Save and close / next
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Error retrieving suggestions.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Error saving document
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
เกิดข้อผิดพลาดในการลบเอกสาร
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently recreate the archive file for this document.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
The archive file will be re-generated with the current settings.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Error executing operation
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Error downloading document
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Page Fit
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 476989d8e..9267d2376 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Düzenleyici
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6276,7 +6276,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7074,7 +7074,7 @@ tüm krite
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Ön izleme yüklenirken hata
@@ -7082,7 +7082,7 @@ tüm krite
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Ön izlemeyi aç
@@ -8788,7 +8788,7 @@ tüm krite
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Parolayı girin
@@ -8796,7 +8796,7 @@ tüm krite
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Metaveri alınırken bir hata meydana geldi
@@ -8804,11 +8804,11 @@ tüm krite
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
İçerik yüklenirken bir hata ile karşılaşıldı:
@@ -8816,7 +8816,7 @@ tüm krite
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8824,7 +8824,7 @@ tüm krite
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8832,7 +8832,7 @@ tüm krite
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8840,7 +8840,7 @@ tüm krite
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8848,7 +8848,7 @@ tüm krite
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8856,7 +8856,7 @@ tüm krite
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8864,7 +8864,7 @@ tüm krite
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Sonraki belge
@@ -8872,7 +8872,7 @@ tüm krite
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Önceki belge
@@ -8880,7 +8880,7 @@ tüm krite
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8892,7 +8892,7 @@ tüm krite
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Belgeyi kaydet
@@ -8900,7 +8900,7 @@ tüm krite
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Kaydet, kapat ve bir sonrakine geç
@@ -8908,7 +8908,7 @@ tüm krite
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8916,7 +8916,7 @@ tüm krite
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Öneriler getirilirken bir hata meydana geldi.
@@ -8924,11 +8924,11 @@ tüm krite
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
"" belgesi başarıyla kaydedildi.
@@ -8936,7 +8936,7 @@ tüm krite
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8944,7 +8944,7 @@ tüm krite
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Belge kaydedilirken bir hata ile karşılaşıldı
@@ -8952,7 +8952,7 @@ tüm krite
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8960,7 +8960,7 @@ tüm krite
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8972,7 +8972,7 @@ tüm krite
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Belge silinirken bir hata meydana geldi
@@ -8980,7 +8980,7 @@ tüm krite
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8992,7 +8992,7 @@ tüm krite
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.
@@ -9000,7 +9000,7 @@ tüm krite
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır.
@@ -9008,7 +9008,7 @@ tüm krite
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9016,7 +9016,7 @@ tüm krite
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
İşlemi gerçekleştirirken bir hata ile karşılaşıldı
@@ -9024,7 +9024,7 @@ tüm krite
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Belge indirilirken bir hata meydana geldi
@@ -9032,7 +9032,7 @@ tüm krite
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Sayfa Sığdır
@@ -9040,7 +9040,7 @@ tüm krite
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9048,7 +9048,7 @@ tüm krite
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı
@@ -9056,7 +9056,7 @@ tüm krite
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9064,7 +9064,7 @@ tüm krite
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9072,7 +9072,7 @@ tüm krite
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9080,7 +9080,7 @@ tüm krite
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Yazdırma başarısız oldu.
@@ -9088,7 +9088,7 @@ tüm krite
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı.
@@ -9096,11 +9096,11 @@ tüm krite
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
tiff'i yüklenirken bir hata meydana geldi
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 69b1248d8..85f1aec49 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF Editor
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Помилка при завантаженні попереднього перегляду
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Відкрити попередній перегляд
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Введіть пароль
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Помилка отримання метаданих
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Під час завантаження вмісту сталася помилка:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Наступний документ
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Попередній документ
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Зберегти документ
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Зберегти й закрити / наступний
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Помилка при отриманні пропозицій.
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Document "" saved successfully.
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Помилка при збереженні документа
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Помилка видалення документа
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Ця операція остаточно відновить архівний файл цього документа.
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Файл архіву буде повторно створений з поточними налаштуваннями.
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Помилка виконання операції
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Помилка завантаження документа
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Вмістити сторінку
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Error executing PDF edit operation
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
Print failed.
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Error loading document for printing.
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index 50668b124..4c792832b 100644
--- a/src-ui/src/locale/messages.vi_VN.xlf
+++ b/src-ui/src/locale/messages.vi_VN.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
Trình chỉnh sửa PDF
@@ -2360,7 +2360,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3348,11 +3348,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4020,7 +4020,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4144,7 +4144,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4156,7 +4156,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4168,7 +4168,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
Start
@@ -6302,7 +6302,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7106,7 +7106,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
Lỗi tải Xem trước
@@ -7114,7 +7114,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
Mở bản xem trước
@@ -8836,7 +8836,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
Nhập mật khẩu
@@ -8844,7 +8844,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
Lỗi truy xuất siêu dữ liệu
@@ -8852,11 +8852,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
Đã xảy ra lỗi Nội dung tải:
@@ -8866,7 +8866,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8874,7 +8874,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8882,7 +8882,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8890,7 +8890,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8898,7 +8898,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8906,7 +8906,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8914,7 +8914,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
Tài liệu sau
@@ -8922,7 +8922,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
Tài liệu trước
@@ -8930,7 +8930,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8942,7 +8942,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
Lưu tài liệu
@@ -8950,7 +8950,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
Lưu và đóng / tiếp theo
@@ -8958,7 +8958,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8966,7 +8966,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
Lỗi khi lấy các gợi ý.
@@ -8974,11 +8974,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
Tài liệu "" Đã lưu thành công.
@@ -8988,7 +8988,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8996,7 +8996,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
Lỗi khi lưu tài liệu
@@ -9004,7 +9004,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -9012,7 +9012,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -9024,7 +9024,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
Lỗi khi xóa tài liệu.
@@ -9032,7 +9032,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -9044,7 +9044,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Thao tác này sẽ tạo lại vĩnh viễn tệp lưu trữ cho tài liệu này.
@@ -9052,7 +9052,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
Tệp lưu trữ sẽ được tạo lại với các cài đặt hiện tại.
@@ -9060,7 +9060,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9068,7 +9068,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
Lỗi thực hiện thao tác
@@ -9076,7 +9076,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
Lỗi khi tải xuống tài liệu
@@ -9084,7 +9084,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
Vừa khít trang
@@ -9092,7 +9092,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9100,7 +9100,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
Lỗi khi thực hiện chỉnh sửa PDF
@@ -9108,7 +9108,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9116,7 +9116,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9124,7 +9124,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9132,7 +9132,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
In ấn thất bại.
@@ -9140,7 +9140,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
Lỗi khi tải tài liệu để in.
@@ -9148,11 +9148,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
Đã xảy ra lỗi tải TIFF:
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index dc49adbfd..0f8fea1aa 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF 编辑器
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
删除密码保护
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
创建一个不受保护的副本或替换现有文件。
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
开始
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
预览加载时发生错误
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
打开预览
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
输入密码
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
获取元数据时发生错误
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
加载内容时发生错误:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
文档已更新
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
文档已于 更新。
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
重新加载以丢弃本地未保存的更改,并加载最新的远程版本。
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
重新加载
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
已重新加载文档,已应用最新更改。
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
文档已重新加载。
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
下一个文档
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
上一个文档
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
保存文档
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
保存并关闭 / 下一个
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
获取版本内容出错
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
获取建议时发生错误。
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
文档 "" 保存成功。
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
保存文档 时发生错误
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
保存文档时发生错误
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
您真的要将文档 "" 移动到回收站吗?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
删除文档时发生错误。
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
此操作将永久重新创建此文档的归档文件。
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
归档文件将使用当前设置重新生成。
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
“” 的重新处理操作将在后台开始。
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
执行操作时发生错误
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
下载文档时出错
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
适应页面
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
对‘’的 PDF 编辑操作将在后台开始。
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
执行 PDF 编辑操作出错
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
请在试图删除之前输入当前密码。
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
"" 的密码删除操作将在后台开始。
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
执行密码删除操作时出错
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
打印失败。
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
加载打印文档时出错。
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
加载内容时发生错误:
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 97918795b..447d4c29c 100644
--- a/src-ui/src/locale/messages.zh_TW.xlf
+++ b/src-ui/src/locale/messages.zh_TW.xlf
@@ -1398,7 +1398,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1787
+ 1791
PDF 編輯器
@@ -2358,7 +2358,7 @@
src/app/components/document-detail/document-detail.component.ts
- 653
+ 657
src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html
@@ -3338,11 +3338,11 @@
src/app/components/document-detail/document-detail.component.ts
- 1405
+ 1409
src/app/components/document-detail/document-detail.component.ts
- 1788
+ 1792
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4002,7 +4002,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1358
+ 1362
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -4126,7 +4126,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1841
+ 1845
Remove password protection
@@ -4138,7 +4138,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1842
+ 1846
Create an unprotected copy or replace the existing file.
@@ -4150,7 +4150,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1843
+ 1847
開始
@@ -6274,7 +6274,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7072,7 +7072,7 @@
Error loading preview
src/app/components/common/preview-popup/preview-popup.component.html
- 10
+ 11
讀取預覽時發生錯誤
@@ -7080,7 +7080,7 @@
Open preview
src/app/components/common/preview-popup/preview-popup.component.ts
- 61
+ 62
開啟預覽
@@ -8786,7 +8786,7 @@
Enter Password
src/app/components/document-detail/document-detail.component.html
- 512
+ 513
輸入密碼
@@ -8794,7 +8794,7 @@
Error retrieving metadata
src/app/components/document-detail/document-detail.component.ts
- 423
+ 424
取得詮釋資料時發生錯誤
@@ -8802,11 +8802,11 @@
An error occurred loading content:
src/app/components/document-detail/document-detail.component.ts
- 525,527
+ 526,528
src/app/components/document-detail/document-detail.component.ts
- 982,984
+ 986,988
讀取內容時發生錯誤:
@@ -8814,7 +8814,7 @@
Document was updated
src/app/components/document-detail/document-detail.component.ts
- 648
+ 652
Document was updated
@@ -8822,7 +8822,7 @@
Document was updated at .
src/app/components/document-detail/document-detail.component.ts
- 649
+ 653
Document was updated at .
@@ -8830,7 +8830,7 @@
Reload to discard your local unsaved edits and load the latest remote version.
src/app/components/document-detail/document-detail.component.ts
- 650
+ 654
Reload to discard your local unsaved edits and load the latest remote version.
@@ -8838,7 +8838,7 @@
Reload
src/app/components/document-detail/document-detail.component.ts
- 652
+ 656
Reload
@@ -8846,7 +8846,7 @@
Document reloaded with latest changes.
src/app/components/document-detail/document-detail.component.ts
- 708
+ 712
Document reloaded with latest changes.
@@ -8854,7 +8854,7 @@
Document reloaded.
src/app/components/document-detail/document-detail.component.ts
- 719
+ 723
Document reloaded.
@@ -8862,7 +8862,7 @@
Next document
src/app/components/document-detail/document-detail.component.ts
- 821
+ 825
下一個文件
@@ -8870,7 +8870,7 @@
Previous document
src/app/components/document-detail/document-detail.component.ts
- 831
+ 835
上一個文件
@@ -8878,7 +8878,7 @@
Close document
src/app/components/document-detail/document-detail.component.ts
- 839
+ 843
src/app/services/open-documents.service.ts
@@ -8890,7 +8890,7 @@
Save document
src/app/components/document-detail/document-detail.component.ts
- 846
+ 850
儲存文件
@@ -8898,7 +8898,7 @@
Save and close / next
src/app/components/document-detail/document-detail.component.ts
- 855
+ 859
儲存並關閉/下一個
@@ -8906,7 +8906,7 @@
Error retrieving version content
src/app/components/document-detail/document-detail.component.ts
- 965
+ 969
Error retrieving version content
@@ -8914,7 +8914,7 @@
Error retrieving suggestions.
src/app/components/document-detail/document-detail.component.ts
- 1026
+ 1030
取得建議時發生錯誤。
@@ -8922,11 +8922,11 @@
Document "" saved successfully.
src/app/components/document-detail/document-detail.component.ts
- 1238
+ 1242
src/app/components/document-detail/document-detail.component.ts
- 1265
+ 1269
文件「」儲存成功。
@@ -8934,7 +8934,7 @@
Error saving document ""
src/app/components/document-detail/document-detail.component.ts
- 1271
+ 1275
Error saving document ""
@@ -8942,7 +8942,7 @@
Error saving document
src/app/components/document-detail/document-detail.component.ts
- 1326
+ 1330
儲存文件時發生錯誤
@@ -8950,7 +8950,7 @@
Do you really want to move the document "" to the trash?
src/app/components/document-detail/document-detail.component.ts
- 1359
+ 1363
Do you really want to move the document "" to the trash?
@@ -8958,7 +8958,7 @@
Documents can be restored prior to permanent deletion.
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8970,7 +8970,7 @@
Error deleting document
src/app/components/document-detail/document-detail.component.ts
- 1381
+ 1385
刪除文件時發生錯誤
@@ -8978,7 +8978,7 @@
Reprocess confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -8990,7 +8990,7 @@
This operation will permanently recreate the archive file for this document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
將永久重新建立此文件的封存檔案。
@@ -8998,7 +8998,7 @@
The archive file will be re-generated with the current settings.
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
封存檔案將以目前設定重新產生。
@@ -9006,7 +9006,7 @@
Reprocess operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1413
+ 1417
Reprocess operation for "" will begin in the background.
@@ -9014,7 +9014,7 @@
Error executing operation
src/app/components/document-detail/document-detail.component.ts
- 1424
+ 1428
執行作業時發生錯誤
@@ -9022,7 +9022,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1487
+ 1491
下載文件時發生錯誤
@@ -9030,7 +9030,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1565
+ 1569
符合頁面大小
@@ -9038,7 +9038,7 @@
PDF edit operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1808
+ 1812
PDF edit operation for "" will begin in the background.
@@ -9046,7 +9046,7 @@
Error executing PDF edit operation
src/app/components/document-detail/document-detail.component.ts
- 1820
+ 1824
執行 PDF 編輯時時發生錯誤
@@ -9054,7 +9054,7 @@
Please enter the current password before attempting to remove it.
src/app/components/document-detail/document-detail.component.ts
- 1831
+ 1835
Please enter the current password before attempting to remove it.
@@ -9062,7 +9062,7 @@
Password removal operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1865
+ 1869
Password removal operation for "" will begin in the background.
@@ -9070,7 +9070,7 @@
Error executing password removal operation
src/app/components/document-detail/document-detail.component.ts
- 1879
+ 1883
Error executing password removal operation
@@ -9078,7 +9078,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1925
+ 1929
列印失敗。
@@ -9086,7 +9086,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1938
+ 1942
載入列印文件時發生錯誤
@@ -9094,11 +9094,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 2008
+ 2012
src/app/components/document-detail/document-detail.component.ts
- 2014
+ 2018
讀取 TIFF 檔時發生錯誤:
diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po
index cdc66a34e..e4a12fd6f 100644
--- a/src/locale/af_ZA/LC_MESSAGES/django.po
+++ b/src/locale/af_ZA/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Language: af_ZA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Waarde moet geldige JSON wees."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ongeldige logiese uitdrukking {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Ongeldige veranderlike bespeur."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/am_ET/LC_MESSAGES/django.po b/src/locale/am_ET/LC_MESSAGES/django.po
index 69d1c309e..b582ea706 100644
--- a/src/locale/am_ET/LC_MESSAGES/django.po
+++ b/src/locale/am_ET/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Amharic\n"
"Language: am_ET\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "መዝገባት"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "የሚሰራው እሴት \"JSON\" መሆን አለበት"
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "ልክ ያልሆነ የተወሰነ የቦታ መጠይቅ አገላለጽ"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "ልክ ያልሆነ የመግለጫ ዝርዝር። ባዶ መሆን የለበትም።"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "ልክ ያልሆነ የሎጂክ ኦፕሬተር {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "ከፍተኛው የጥያቄ ሁኔታዎች/መጠን ብዛት አልፏል።"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ይሄ ታዐማኒነት ያለው ልማድ አይደለም።"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "ጥያቄን አይደግፍም expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "ከፍተኛው የጥገኝነት ጥልቀት አልፏል።"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "ይህ ልማድ አልተገኘም"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po
index 9ec82ea16..82b160330 100644
--- a/src/locale/ar_AR/LC_MESSAGES/django.po
+++ b/src/locale/ar_AR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Language: ar_SA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "المستندات"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "يجب أن تكون القيمة JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "تعبير استعلام غير صالح للحقول المخصصة"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "قائمة عبارة خاطئة."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} حقل مخصص غير صالح."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} لا يدعم تعبير الاستعلام {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "لم يتم العثور على حقل مخصص"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "اكتشاف متغير خاطئ."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po
index 056fa9a51..d1c4b4069 100644
--- a/src/locale/be_BY/LC_MESSAGES/django.po
+++ b/src/locale/be_BY/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Belarusian\n"
"Language: be_BY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Дакументы"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Выяўлена няправільная зменная."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po
index 3ca4dcb1f..dcce36278 100644
--- a/src/locale/bg_BG/LC_MESSAGES/django.po
+++ b/src/locale/bg_BG/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Language: bg_BG\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Стойността трябва да е валидна JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Невалидна заявка на персонализираното полето"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Списък с невалиден израз. Не може да е празно."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Невалиден логически оператор {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Надвишен е максимален брой за заявки."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не е валидно персонализирано поле."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддържа заявка expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Надвишена е максималната дълбочина на вмъкване."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Персонализирано поле не е намерено"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "стартиране на работните процеси"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Засечена е невалидна променлива."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po
index 0f64b5f95..c7e325744 100644
--- a/src/locale/ca_ES/LC_MESSAGES/django.po
+++ b/src/locale/ca_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents "
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Valor ha de ser un JSON valid."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Expressió de camp de consulta invàlid"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Expressió de llista invàlida. No ha d'estar buida."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Invàlid operand lògic {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Condicions de consulta excedits."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} no és un camp personalitzat vàlid."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no suporta expressió de consulta {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Màxima profunditat anidada excedida."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Camp personalitzat no trobat"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "flux corrents"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Permisos insuficients."
@@ -1379,7 +1379,7 @@ msgstr "Variable detectada invàlida."
msgid "Duplicate document identifiers are not allowed."
msgstr "Duplicat d'identificadors de documents no permès."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documents no trobats: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "L'esquema d'URI '{parts.scheme}' no està permès. Esquemes permesos: {'
msgid "Unable to parse URI {value}"
msgstr "No s'ha pogut analitzar l'URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Invalid more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Configuració AI invàlida."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Especifica només un dels següents valors: text, title_search, query o more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Permisos insuficients per compartir document %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paquet ja s'està processant."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "El paquet de link encarà s'està preparant. Prova de nou més tard."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "El paquet d'enllaç no està disponible."
diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po
index 887407318..6a89a08a3 100644
--- a/src/locale/cs_CZ/LC_MESSAGES/django.po
+++ b/src/locale/cs_CZ/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Language: cs_CZ\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Hodnota musí být platný JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz dotazu na vlastní pole"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný seznam výrazů. Nesmí být prázdný."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Překročen maximální počet podmínek dotazu."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} není platné vlastní pole."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz dotazu {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Překročena maximální hloubka větvení."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Vlastní pole nebylo nalezeno"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "spuštění pracovních postupů"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Nedostatečná oprávnění."
@@ -1379,7 +1379,7 @@ msgstr "Zjištěna neplatná proměnná."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1636,36 +1636,36 @@ msgstr "URI schéma '{parts.scheme}' není povoleno. Povolená schémata: {',\n"
msgid "Unable to parse URI {value}"
msgstr "Nelze zpracovat URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nedostatečná oprávnění ke sdílení dokumentu %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index c2e6ab236..376f62469 100644
--- a/src/locale/da_DK/LC_MESSAGES/django.po
+++ b/src/locale/da_DK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Language: da_DK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Værdien skal være gyldig JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ugyldigt tilpasset feltforespørgselsudtryk"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ugyldig udtryksliste. Må ikke være tom."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ugyldig logisk operatør {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maksimalt antal forespørgselsbetingelser overskredet."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} er ikke et gyldigt tilpasset felt."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} understøtter ikke forespørgsel expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maksimal indlejringsdybde overskredet."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Tilpasset felt ikke fundet"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "workflow-kørsler"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Ugyldig variabel fundet."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/de_CH/LC_MESSAGES/django.po b/src/locale/de_CH/LC_MESSAGES/django.po
index 671e260f5..d5440e9bb 100644
--- a/src/locale/de_CH/LC_MESSAGES/django.po
+++ b/src/locale/de_CH/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: German, Switzerland\n"
"Language: de_CH\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ungültiger logischer Operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maximale Anzahl an Abfragebedingungen überschritten."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ist kein gültiges Zusatzfeld."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maximale Verschachtelungstiefe überschritten."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Benutzerdefiniertes Feld nicht gefunden"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "Arbeitsablauf wird ausgeführt"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Unzureichende Berechtigungen."
@@ -1379,7 +1379,7 @@ msgstr "Ungültige Variable erkannt."
msgid "Duplicate document identifiers are not allowed."
msgstr "Doppelte Dokumentbezeichner sind nicht erlaubt."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumente nicht gefunden: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "URI-Schema „{parts.scheme}“ ist nicht erlaubt. Erlaubte Schemata: {'
msgid "Unable to parse URI {value}"
msgstr "URI {value} kann nicht gelesen werden"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Ungültige more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Ungültige KI-Konfiguration."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Geben Sie nur einen von text, title_search, query, oder more_like_id an."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Unzureichende Berechtigungen, um Dokument %(id)s zu teilen."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket wird bereits verarbeitet."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Das Freigabelink-Paket wird noch vorbereitet. Bitte versuchen Sie es später erneut."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Das Freigabelink-Paket ist nicht verfügbar."
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index 440d48cd7..95af669c4 100644
--- a/src/locale/de_DE/LC_MESSAGES/django.po
+++ b/src/locale/de_DE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ungültiger Zusatzfeld-Abfrageausdruck"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ungültiger logischer Operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maximale Anzahl an Abfragebedingungen überschritten."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ist kein gültiges Zusatzfeld."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maximale Verschachtelungstiefe überschritten."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Zusatzfeld nicht gefunden"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "Arbeitsablauf wird ausgeführt"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Unzureichende Berechtigungen."
@@ -1379,7 +1379,7 @@ msgstr "Ungültige Variable erkannt."
msgid "Duplicate document identifiers are not allowed."
msgstr "Doppelte Dokumentbezeichner sind nicht erlaubt."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumente nicht gefunden: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "URI-Schema „{parts.scheme}“ ist nicht erlaubt. Erlaubte Schemata: {'
msgid "Unable to parse URI {value}"
msgstr "URI {value} kann nicht gelesen werden"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Ungültige more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Ungültige KI-Konfiguration."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "Zeitüberschreitung bei der KI-Backendanfrage."
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Geben Sie nur einen von text, title_search, query, oder more_like_id an."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Unzureichende Berechtigungen, um Dokument %(id)s zu teilen."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket wird bereits verarbeitet."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Das Freigabelink-Paket wird noch vorbereitet. Bitte versuchen Sie es später erneut."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Das Freigabelink-Paket ist nicht verfügbar."
diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po
index 5141c0694..3a03ff0f0 100644
--- a/src/locale/el_GR/LC_MESSAGES/django.po
+++ b/src/locale/el_GR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Language: el_GR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Έγγραφα"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Μη έγκυρος λογικός τελεστής {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Το προσαρμοσμένο πεδίο δε βρέθηκε"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "εκτελέσεις ροής εργασίας"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Εντοπίστηκε μη έγκυρη μεταβλητή."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po
index d04c984bc..52892a3ce 100644
--- a/src/locale/es_ES/LC_MESSAGES/django.po
+++ b/src/locale/es_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "El valor debe ser un JSON válido."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Expresión de consulta de campo personalizado no válida"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expresiones no válida. No debe estar vacía."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Se ha superado el número máximo de condiciones de consulta."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{nombre!r} no es un campo personalizado válido."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no admite la consulta expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Profundidad máxima de nidificación superada."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Campo personalizado no encontrado"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "ejecuciones de flujo de trabajo"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Permisos insuficientes."
@@ -1379,7 +1379,7 @@ msgstr "Variable inválida."
msgid "Duplicate document identifiers are not allowed."
msgstr "No se permiten identificadores de documento duplicados."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documentos no encontrados: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "El esquema URI '{parts.scheme}' no está permitido. Esquemas permitidos:
msgid "Unable to parse URI {value}"
msgstr "No se puede analizar la URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Configuración de IA inválida."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Especifique solo uno entre text, title_search, query, o more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Permisos insuficientes para compartir el documento %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "El paquete ya está siendo procesado."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "El paquete de enlace compartido aún está siendo preparado. Por favor, inténtalo de nuevo más tarde."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "El paquete de enlace compartido no está disponible."
diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po
index bd7487f80..1e8b47b0d 100644
--- a/src/locale/et_EE/LC_MESSAGES/django.po
+++ b/src/locale/et_EE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"Language: et_EE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumendid"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Väärtus peab olema lubatav JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Vigane kohandatud välja päringu avaldis"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Vigane avaldiste loend. Peab olema mittetühi."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Vigane loogikaoperaator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Päringutingimuste suurim hulk on ületatud."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ei ole lubatud kohandatud väli."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ei toeta päringu avaldist {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Suurim pesastamis sügavus ületatud."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Kohandatud välja ei leitud"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/fa_IR/LC_MESSAGES/django.po b/src/locale/fa_IR/LC_MESSAGES/django.po
index 8586d6bae..e6d7a8089 100644
--- a/src/locale/fa_IR/LC_MESSAGES/django.po
+++ b/src/locale/fa_IR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Language: fa_IR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "اسناد و مدارک"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "مقدار باید JSON معتبر باشد."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Invalid custom field query expression"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "لیست عبارتها نامعتبر است. نباید خالی باشد."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{نام! R} یک زمینه سفارشی معتبر نیست."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "حداکثر عمق تودرتویی بیش از حد مجاز است."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "زمینه سفارشی یافت نشد"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "گردش کار اجرا می شود"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "متغیر نامعتبر شناسایی شده است."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po
index a2a51e04b..965a6d696 100644
--- a/src/locale/fi_FI/LC_MESSAGES/django.po
+++ b/src/locale/fi_FI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Language: fi_FI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Asiakirjat"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Arvon on oltava kelvollista JSON:ia."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Virheellinen muuttuja havaittu."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po
index ec30a050a..847a11e35 100644
--- a/src/locale/fr_FR/LC_MESSAGES/django.po
+++ b/src/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "La valeur doit être un JSON valide."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Requête de champ personnalisé invalide"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Liste d'expressions invalide. Doit être non vide."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Opérateur logique {op!r} invalide"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Nombre maximum de conditions dans la requête dépassé."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} n'est pas un champ personnalisé valide."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne supporte pas l'expression {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Profondeur de récursion maximale dépassée."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Champ personnalisé non trouvé"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "le flux de travail s'exécute"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Droits insuffisants."
@@ -1379,7 +1379,7 @@ msgstr "Variable invalide détectée."
msgid "Duplicate document identifiers are not allowed."
msgstr "Les identificateurs de document en double ne sont pas autorisés."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documents introuvables : %(ids)s"
@@ -1634,36 +1634,36 @@ msgstr "Le schéma d'URI « {parts.scheme} » n'est pas autorisé. Schémas aut
msgid "Unable to parse URI {value}"
msgstr "Impossible d'analyser l'URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "More_like_id invalide"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Configuration IA invalide."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "La requête d'arrière-plan IA a expiré."
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Spécifiez seulement un texte, titre, recherche ou more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Droits d'accès insuffisant pour partager %(id)s document."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Le paquet est déjà en cours de traitement."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Le lot de liens de partage est en cours de préparation. Veuillez réessayer plus tard."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Le lot de liens de partage n'est pas disponible."
diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po
index bdf9b0777..da303cae5 100644
--- a/src/locale/he_IL/LC_MESSAGES/django.po
+++ b/src/locale/he_IL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Language: he_IL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "מסמכים"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "ערך חייב להיות JSON תקין."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "רשימת ביטויים לא חוקית. חייב לכלול ערך."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "סימן פעולה לוגית לא חוקי {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "חריגה ממספר תנאי השאילתה המרבי."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} הוא לא שדה מותאם אישית חוקי."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "חריגה מעומק הקינון המרבי."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "שדה מותאם אישית לא נמצא"
@@ -1340,7 +1340,7 @@ msgid "workflow runs"
msgstr "הרצות זרימת עבודה"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "הרשאות אינן מספיקות."
@@ -1380,7 +1380,7 @@ msgstr "משתנה לא חוקי זוהה."
msgid "Duplicate document identifiers are not allowed."
msgstr "מזהי מסמכים כפולים אינם מורשים."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "מסמכים לא נמצאו: %(ids)s"
@@ -1636,36 +1636,36 @@ msgstr "פרוטוקול ה-URI '{parts.scheme}' אינו מורשה. הפר
msgid "Unable to parse URI {value}"
msgstr "לא ניתן לפענח את ה URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "מזהה more_like_id אינו תקין"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "הגדרות בינה מלאכותית שגויות."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "יש לציין רק אחד מהבאים: text, title_search, query או more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "הרשאות לא מספיקות לשיתוף מסמך %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "החבילה (Bundle) כבר נמצאת בתהליך עיבוד."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "חבילת קישור השיתוף עדיין בהכנה. נא לנסות שוב מאוחר יותר."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "חבילת קישור השיתוף אינה זמינה."
diff --git a/src/locale/hi_IN/LC_MESSAGES/django.po b/src/locale/hi_IN/LC_MESSAGES/django.po
index bdd2ff447..15b93af59 100644
--- a/src/locale/hi_IN/LC_MESSAGES/django.po
+++ b/src/locale/hi_IN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Language: hi_IN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "दस्तावेज़"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "मान वैध JSON होना चाहिए."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "अमान्य कस्टम फ़ील्ड क्वेरी एक्सप्रेशन"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "अमान्य एक्सप्रेशन सूची। खाली नहीं होनी चाहिए।"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "अमान्य लॉजिकल ऑपरेटर {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "क्वेरी शर्तों की अधिकतम संख्या पार हो गई है।"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} यह एक वैध कस्टम फ़ील्ड नहीं है।"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} क्वेरी एक्सप्रेशन {expr!r} का समर्थन नहीं करता है।"
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "अधिकतम नेस्टिंग डेप्थ पार हो गई है।"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "कस्टम फ़ील्ड नहीं मिला"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po
index 9ec876d6c..e16dc4f93 100644
--- a/src/locale/hr_HR/LC_MESSAGES/django.po
+++ b/src/locale/hr_HR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"Language: hr_HR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Vrijednost mora biti važeći JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Nevažeći izraz upita prilagođenog polja"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Nevažeći popis izraza. Ne smije biti prazno."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Nevažeći logički operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Premašen je maksimalan broj uvjeta upita."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nije važeće prilagođeno polje."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podržava upit izraz {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Premašena je najveća razina ugniježđivanja."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Prilagođeno polje nije pronađeno"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "tijek rada pokrenut"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Nedovoljne ovlasti."
@@ -1379,7 +1379,7 @@ msgstr "Otkrivena je nevaljana vrsta datoteke."
msgid "Duplicate document identifiers are not allowed."
msgstr "Duplicirani identifikatori dokumenata nisu dopušteni."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumenti nisu pronađeni: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "URI shema '{parts.scheme}' nije dopuštena. Dopuštene sheme: {', '.join
msgid "Unable to parse URI {value}"
msgstr "Nije moguće raščlaniti URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Nevažeći more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Nevažeća AI konfiguracija."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Navedite samo jedno od: text, title_search, query ili more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nedovoljne ovlasti za dijeljenje dokumenta %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket se već obrađuje."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Paket linka za dijeljenje se još priprema. Pokušajte ponovo kasnije."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Paket linka za dijeljenje nije dostupan."
diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po
index 85e06d51f..890527fc8 100644
--- a/src/locale/hu_HU/LC_MESSAGES/django.po
+++ b/src/locale/hu_HU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Language: hu_HU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentumok"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Érvényes JSON érték szükséges."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Érvénytelen egyéni mező lekérdezési kifejezés"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Érvénytelen kifejezéslista. Nem lehet üres."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Érvénytelen logikai operátor {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maximum lekérdezési feltételszám átlépve."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nem érvényes egyéni mező."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "A(z) {data_type} nem támogatja a {expr!r} kifejezés lekérdezést."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maximum beágyazási mélység túllépve."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Az egyéni mező nem található"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "munkafolyamat futtatások"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Nincs jogosúltsága."
@@ -1379,7 +1379,7 @@ msgstr "Érvénytelen változó észlelve."
msgid "Duplicate document identifiers are not allowed."
msgstr "A dokumentumazonosítók duplikálása nem megengedett."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumentumok nem találhatók: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "A '{parts.scheme}' séma nem engedélyezett. Engedélyezett sémák: {',
msgid "Unable to parse URI {value}"
msgstr "A {value} URI értelmezése sikertelen"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Érvénytelen more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Érvénytelen MI konfiguráció."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "A text, title_search, query, vagy more_like_id közül csak egyet adjon meg."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nincs megfelelő jogosultság a %(id)s dokumentum megosztásához."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "A csomag feldolgozása már folyamatban van."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "A megosztási linkcsomag készítése folyamatban. Kérjük, próbálja meg később."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "A megosztási linkcsomag nem elérhető."
diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po
index a66d916fc..e391bcfd7 100644
--- a/src/locale/id_ID/LC_MESSAGES/django.po
+++ b/src/locale/id_ID/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Language: id_ID\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Nilai harus berupa JSON yang valid."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ekspresi pencarian bidang khusus tidak valid"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operator logika {op!r} tidak valid"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Jumlah maksimal kondisi pencarian terlampaui."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} bukan bidang khusus yang valid."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} tidak mendukung ekspresi pencarian expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Kedalaman susunan maksimal terlampaui."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Bidang khusus tidak ditemukan"
@@ -590,11 +590,11 @@ msgstr ""
#: documents/models.py:681
msgid "Success"
-msgstr ""
+msgstr "Sukses"
#: documents/models.py:682
msgid "Failure"
-msgstr ""
+msgstr "Gagal"
#: documents/models.py:683
msgid "Revoked"
@@ -626,7 +626,7 @@ msgstr ""
#: documents/models.py:692
msgid "Empty Trash"
-msgstr ""
+msgstr "Kosongkan Sampah"
#: documents/models.py:693
msgid "Check Workflows"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "daftar jalankan alur kerja"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Izin tidak mencukupi"
@@ -1379,7 +1379,7 @@ msgstr "Variabel ilegal terdeteksi."
msgid "Duplicate document identifiers are not allowed."
msgstr "Penggunaan pengenal dokumen ganda tidak diperbolehkan."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumen tidak ditemukan: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Skema URI '{parts.scheme}' tidak diizinkan. Skema yang diizinkan: {', '.
msgid "Unable to parse URI {value}"
msgstr "Gagal membaca URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Izin tidak mencukupi untuk berbagi dokumen %(id)s"
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket sedang diproses."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Bundel tautan berbagi masih dalam proses persiapan. Silakan coba lagi nanti."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Bundel tautan berbagi tidak tersedia."
diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po
index 11d807d84..91e3c42f2 100644
--- a/src/locale/it_IT/LC_MESSAGES/django.po
+++ b/src/locale/it_IT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Language: it_IT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenti"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Il valore deve essere un JSON valido."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Campo personalizzato della query non valido"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Elenco delle espressioni non valido. Deve essere non vuoto."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operatore logico non valido {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Numero massimo di condizioni di query superato."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} non è un campo personalizzato valido."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} Non supporta la jQuery Expo {Expo!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Profondità massima di nidificazione superata."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Campo personalizzato non trovato"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "esecuzioni del flusso di lavoro"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Autorizzazioni insufficienti."
@@ -1379,7 +1379,7 @@ msgstr "Variabile non valida rilevata."
msgid "Duplicate document identifiers are not allowed."
msgstr "Non sono consentiti identificatori di documenti duplicati."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documenti non trovati: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Lo schema URI '{parts.scheme}' non è consentito. Schemi consentiti: {',
msgid "Unable to parse URI {value}"
msgstr "Impossibile analizzare l'URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "more_like_id non valido"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Configurazione AI non valida."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "Richiesta di backend AI scaduta."
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Specificare solo uno tra text, title_search, query o more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Autorizzazioni insufficienti per condividere il documento %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Il pacchetto è già in fase di elaborazione."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Il pacchetto di link di condivisione è ancora in fase di preparazione. Riprova più tardi."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Il pacchetto di link di condivisione non è disponibile."
diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po
index 783e80f49..dce5e8a5c 100644
--- a/src/locale/ja_JP/LC_MESSAGES/django.po
+++ b/src/locale/ja_JP/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Language: ja_JP\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "ドキュメント"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "値は有効なJSONである必要があります。"
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "無効なカスタムフィールドクエリ式"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "無効な式リストです。空であってはなりません。"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "無効な論理演算子 {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "クエリ条件の最大数を超えました。"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} は有効なカスタムフィールドではありません。"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。"
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "最大ネストの深さを超えました。"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "カスタムフィールドが見つかりません"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "ワークフローの実行"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "無効な変数を検出しました"
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po
index c55c39bcb..105c1f16a 100644
--- a/src/locale/ko_KR/LC_MESSAGES/django.po
+++ b/src/locale/ko_KR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Language: ko_KR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "문서"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "값은 유효한 JSON이어야 합니다."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "잘못된 사용자 정의 필드 쿼리 표현식"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "잘못된 논리 연산자 {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "쿼리 조건의 최대 개수를 초과했습니다."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "최대 중첩 깊이를 초과했습니다."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "사용자 지정 필드를 찾을 수 없음"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "워크플로우 실행"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "잘못된 변수가 감지되었습니다."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr "URI 스킴 '{parts.scheme}'는 허용되지 않습니다. 허용된 스
msgid "Unable to parse URI {value}"
msgstr "{value} URI를 파싱할 수 없음"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po
index 8d24efc54..500a00b58 100644
--- a/src/locale/lb_LU/LC_MESSAGES/django.po
+++ b/src/locale/lb_LU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Luxembourgish\n"
"Language: lb_LU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Ongëlteg Zeechen detektéiert."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po
index 0fab1c121..478969a1b 100644
--- a/src/locale/lt_LT/LC_MESSAGES/django.po
+++ b/src/locale/lt_LT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Language: lt_LT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentai"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Reikšmė turi būti galiojantis JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Neteisinga pasirinktinio lauko užklausos išraiška"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Neteisingas išraiškos sąrašas. Jis turi būti netuščias."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Neteisingas loginis operatorius {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Viršytas maksimalus užklausos sąlygų skaičius."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nėra galiojantis pasirinktas laukas."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepalaiko užklausos išraiškos {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Viršytas maksimalus įdėjimo gylis."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Pasirinktinis laukas nerastas"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr "URI schema '{parts.scheme}' nėra leistina. Galimos schemos: {', '.join(
msgid "Unable to parse URI {value}"
msgstr "Nepavyko apdoroti URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nepakanka leidimų bendrinti dokumentą %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Rinkinys jau apdorojamas."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Bendrinimo nuorodų rinkinys vis dar ruošiamas. Bandykite dar kartą vėliau."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Dalinimos nuorodų rinkinys yra nepasiekiamas."
diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po
index 93489708b..988448657 100644
--- a/src/locale/lv_LV/LC_MESSAGES/django.po
+++ b/src/locale/lv_LV/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Language: lv_LV\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokuments"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/mk_MK/LC_MESSAGES/django.po b/src/locale/mk_MK/LC_MESSAGES/django.po
index 64611be5c..78f82087e 100644
--- a/src/locale/mk_MK/LC_MESSAGES/django.po
+++ b/src/locale/mk_MK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Macedonian\n"
"Language: mk_MK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr ""
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po
index 10b0cc1ca..1d84c0a81 100644
--- a/src/locale/ms_MY/LC_MESSAGES/django.po
+++ b/src/locale/ms_MY/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Malay\n"
"Language: ms_MY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po
index daef76a80..4d6d74302 100644
--- a/src/locale/nl_NL/LC_MESSAGES/django.po
+++ b/src/locale/nl_NL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Language: nl_NL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenten"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Waarde moet een geldige JSON zijn."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ongeldige aangepaste veld query expressie"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ongeldige expressielijst mag niet leeg zijn."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ongeldige logische operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maximum aantal query voorwaarden overschreden."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} is geen geldig aangepast veld."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ondersteunt geen query expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maximale nestdiepte overschreden."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Aangepast veld niet gevonden"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Ongeldige variabele ontdekt."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po
index 45f3d1e24..52ce43aa5 100644
--- a/src/locale/no_NO/LC_MESSAGES/django.po
+++ b/src/locale/no_NO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 23:30\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Verdien må være gyldig JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ugyldig spørringsuttrykk for egendefinerte felt"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ugyldig uttrykksliste. Kan ikke være tom."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ugyldig logiske operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maksimalt antall spørringsbetingelser er overskredet."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} er ikke et gyldig egendefinert felt."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} støtter ikke spørring expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "For mange nivåer med nøsting."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Egendefinert felt ble ikke funnet"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "workflow runs (NO)"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Insufficient permissions. (NO)"
@@ -1379,7 +1379,7 @@ msgstr "Ugyldig variabel oppdaget."
msgid "Duplicate document identifiers are not allowed."
msgstr "Duplicate document identifiers are not allowed. (NO)"
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documents not found: %(ids)s (NO)"
@@ -1635,36 +1635,36 @@ msgstr "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(
msgid "Unable to parse URI {value}"
msgstr "Unable to parse URI {value} (NO)"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Invalid more_like_id (NO)"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Invalid AI configuration. (NO)"
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "Forespørselen til KI-tjenesten fikk tidsavbrudd."
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Specify only one of text, title_search, query, or more_like_id. (NO)"
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Insufficient permissions to share document %(id)s. (NO)"
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Bundle is already being processed. (NO)"
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "The share link bundle is still being prepared. Please try again later. (NO)"
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "The share link bundle is unavailable. (NO)"
diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po
index e75ced652..ea5d06eb9 100644
--- a/src/locale/pl_PL/LC_MESSAGES/django.po
+++ b/src/locale/pl_PL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Language: pl_PL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Wartość musi być poprawnym JSON-em."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Nieprawidłowa lista wyrażeń. Nie może być pusta."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Nieprawidłowy operator logiczny {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maksymalna liczba warunków zapytania została przekroczona."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie jest prawidłowym polem niestandardowym."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nie obsługuje wyrażenia zapytania {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Przekroczono maksymalną głębokość zagnieżdżenia."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Nie znaleziono pola niestandardowego"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "uruchomienia przepływu pracy"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Niewystarczające uprawnienia."
@@ -1379,7 +1379,7 @@ msgstr "Wykryto nieprawidłową zmienną."
msgid "Duplicate document identifiers are not allowed."
msgstr "Nie dopuszcza się powielania identyfikatorów dokumentów."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Nie znaleziono dokumentów: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Schemat URI '{parts.scheme}' jest niedozwolony. Dozwolone schematy: {',
msgid "Unable to parse URI {value}"
msgstr "Nie można przetworzyć URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Nieprawidłowy more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Brak uprawnień do udostępnienia dokumentu %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Pakiet jest już przetwarzany."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Pakiet do udostępnienia jest nadal przygotowywany. Spróbuj ponownie później."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Pakiet do udostępnienia jest niedostępny."
diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po
index 75265c237..0d8f2c283 100644
--- a/src/locale/pt_BR/LC_MESSAGES/django.po
+++ b/src/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "O valor deve ser um JSON válido."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválida"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Deve estar não vazia."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Número máximo de condições de consulta excedido."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} Não suporta a consulta expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Profundidade máxima do aninhamento excedida."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Campo personalizado não encontrado"
@@ -1340,7 +1340,7 @@ msgid "workflow runs"
msgstr "execução de fluxo de trabalho"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1380,7 +1380,7 @@ msgstr "Variável inválida detectada."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1637,36 +1637,36 @@ msgstr "Esquema URI '{parts.scheme}' não é permitido. Esquemas permitidos:\n"
msgid "Unable to parse URI {value}"
msgstr "Não é possível analisar o URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po
index 825ae48fa..05a90e6f8 100644
--- a/src/locale/pt_PT/LC_MESSAGES/django.po
+++ b/src/locale/pt_PT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "O valor deve ser JSON válido."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválido"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Não deve estar vazia."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "O número máximo de condições de consulta foi excedido."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} não aceita a expressão de consulta {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Campo personalizado não encontrado"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Variável inválida detetada."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr "Não foi possível analisar o URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po
index e27804ec8..5d3250a6e 100644
--- a/src/locale/ro_RO/LC_MESSAGES/django.po
+++ b/src/locale/ro_RO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Language: ro_RO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documente"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Valoarea trebuie să fie validă JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Expresie de interogare pentru câmp personalizat nevalidă"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Listă de expresii nevalidă. Trebuie să nu fie goală."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Operator logic nevalid {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Numărul maxim de condiții de interogare a fost depășit."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nu este un câmp personalizat valid."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nu acceptă interogare expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Adâncimea maximă depășită."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Câmpul personalizat nu a fost găsit"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "rulări flux de lucru"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Variabilă nevalidă detectată."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr "Schema URI '{parts.scheme}' nu este permisă. Schemele permise: {', '.jo
msgid "Unable to parse URI {value}"
msgstr "Nu se poate analiza URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po
index f70353567..33ce65898 100644
--- a/src/locale/ru_RU/LC_MESSAGES/django.po
+++ b/src/locale/ru_RU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документы"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Значение должно быть корректным JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Неверное выражение запроса пользовательского поля"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Недопустимый список выражений. Не может быть пустым."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Недопустимый логический оператор {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Превышено максимальное количество условий запроса."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не является допустимым пользовательским полем."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддерживает запрос {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Превышена максимальная глубина вложения."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Пользовательское поле не найдено"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "запуски рабочего процесса"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Обнаружена неверная переменная."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr "Недопустимая схема URI '{parts.scheme}'. Разреше
msgid "Unable to parse URI {value}"
msgstr "Невозможно распознать URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po
index a0604aad6..0a2409833 100644
--- a/src/locale/sk_SK/LC_MESSAGES/django.po
+++ b/src/locale/sk_SK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"Language: sk_SK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Hodnota musí byť vo validnom formáte JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz požiadavky na vlastné pole"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Prekročili ste maximálny počet podmienok požiadavky."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie je platné vlastné pole."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz požiadavky {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Bola prekročená maximálna hĺbka vetvenia."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Vlastné pole nebolo nájdené"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "spustenia pracovných postupov"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Zistená neplatná premenná."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po
index 3d1bf4966..93e082904 100644
--- a/src/locale/sl_SI/LC_MESSAGES/django.po
+++ b/src/locale/sl_SI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"Language: sl_SI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Vrednost mora biti veljaven JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Neveljaven izraz poizvedbe po polju po meri"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Neveljaven seznam izrazov. Ne sme biti prazen."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Neveljaven logični operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Preseženo je bilo največje dovoljeno število pogojev poizvedbe."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ni veljavno polje po meri."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podpira izraza poizvedbe {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Presežena je bila največja globina gnezdenja."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Polja po meri ni bilo mogoče najti"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "poteka dela"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Nezadostna dovoljenja."
@@ -1379,7 +1379,7 @@ msgstr "Zaznani neveljavni znaki."
msgid "Duplicate document identifiers are not allowed."
msgstr "Podvojeni identifikatorji dokumentov niso dovoljeni."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumentov ni bilo mogoče najti: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Shema URI '{parts.scheme}' ni dovoljena. Dovoljene sheme: {', '.join(all
msgid "Unable to parse URI {value}"
msgstr "Ni mogoče razčleniti URI-ja {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Neveljaven more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Neveljavna konfiguracija umetne inteligence."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "Časovna omejitev zahteve za umetno inteligenco je potekla."
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Navedite samo eno od naslednjih vrednosti: text, title_search, query ali more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nezadostna dovoljenja za skupno rabo dokumenta %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket se že obdeluje."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Paket povezav za deljenje je še vedno v pripravi. Poskusite znova pozneje."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Paket povezav za deljenje ni na voljo."
diff --git a/src/locale/sq_AL/LC_MESSAGES/django.po b/src/locale/sq_AL/LC_MESSAGES/django.po
index 15924f8a7..bd18caa47 100644
--- a/src/locale/sq_AL/LC_MESSAGES/django.po
+++ b/src/locale/sq_AL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Albanian\n"
"Language: sq_AL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Value must be valid JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Invalid custom field query expression"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Invalid expression list. Must be nonempty."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Invalid logical operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "[SQ] Maximum number of query conditions exceeded."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "[SQ] {name!r} is not a valid custom field."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "[SQ] {data_type} does not support query expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "[SQ] Maximum nesting depth exceeded."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Custom field not found"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "[SQ] workflow runs"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "[SQ] Insufficient permissions."
@@ -1379,7 +1379,7 @@ msgstr "Invalid variable detected."
msgid "Duplicate document identifiers are not allowed."
msgstr "[SQ] Duplicate document identifiers are not allowed."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Documents not found: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "[SQ] URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.
msgid "Unable to parse URI {value}"
msgstr "[SQ] Unable to parse URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Invalid more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Invalid AI configuration."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Specify only one of text, title_search, query, or more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "[SQ] Insufficient permissions to share document %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "[SQ] Bundle is already being processed."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "[SQ] The share link bundle is still being prepared. Please try again later."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "[SQ] The share link bundle is unavailable."
diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po
index ed0512309..7a5ee37cb 100644
--- a/src/locale/sr_CS/LC_MESSAGES/django.po
+++ b/src/locale/sr_CS/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Serbian (Latin)\n"
"Language: sr_CS\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenta"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Vrednost mora da bude važeći JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Nevažeći izraz upita prilagođen polja"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Nevažeća lista izraza. Ne sme biti prazna."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Nevažeći logični operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Premašen je maksimalni broj uslova u upitu."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nije validno prilagođeno polje."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podržava izraz u upitu {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Premašena je maksimalna dubina grananja."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Nije pronađeno prilagođeno polje"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "pokretanje tokova rada"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Nedovoljne dozvole."
@@ -1379,7 +1379,7 @@ msgstr "Otkrivena je nevažeća promenljiva."
msgid "Duplicate document identifiers are not allowed."
msgstr "Duplirani identifikatori dokumenata nisu dozvoljeni."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumenti nisu pronađeni: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Šema URI-ja '{parts.scheme}' nije dozvoljena. Dozvoljene šeme {', '.jo
msgid "Unable to parse URI {value}"
msgstr "Nije moguće analizirati URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Nevažeći more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Nevažeća konfiguracija veštačke inteligencije."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "Navedite samo jedno od sledećeg: text, title_search, query ili more_like_id."
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Nedovoljne dozvole za deljenje dokumenta %(id)s."
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Paket se već obrađuje."
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Paket linkova za deljenje se još uvek priprema. Molimo pokušajte ponovo kasnije."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Paket linkova za deljenje nije dostupan."
diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po
index fc56493c7..de1ce9a24 100644
--- a/src/locale/sv_SE/LC_MESSAGES/django.po
+++ b/src/locale/sv_SE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokument"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Värdet måste vara giltigt JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Ogiltigt sökordsuttryck för anpassade fält"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Ogiltig uttryckslista. Får inte vara tom."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Ogiltig logisk operator {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Maximalt antal frågevillkor överskrids."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} är inte ett giltigt anpassat fält."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} stöder inte frågan expr {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Maximalt antal nästlade nivåer överskrids."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Anpassat fält hittades inte"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "arbetsflöde körs"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Otillräckliga behörigheter."
@@ -1379,7 +1379,7 @@ msgstr "Ogiltig variabel upptäckt."
msgid "Duplicate document identifiers are not allowed."
msgstr "Dubbletter av dokumentidentifierare är inte tillåtna."
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Dokumenten hittades inte: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "Ogiltig more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "Ogiltig AI-konfiguration."
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po
index 9deaf2ae7..8216507af 100644
--- a/src/locale/th_TH/LC_MESSAGES/django.po
+++ b/src/locale/th_TH/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Language: th_TH\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "เอกสาร"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง"
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}"
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "ไม่พบฟิลด์ที่กำหนด"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "ตรวจพบตัวแปรไม่ถูกต้อง"
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1634,36 +1634,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index d613005e1..bdc0495da 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Belgeler"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Değer geçerli bir JSON olmalıdır."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Geçersiz özel alan sorgu ifadesi"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Geçersiz ifade listesi. Boş olmamalıdır."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Geçersiz mantıksal işleç {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "En çok sorgu koşulu sayısı aşıldı."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} geçerli bir özel alan değil."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}, {expr!r} sorgu ifadesini desteklemiyor."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "En çok iç içe geçme izni aşıldı."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Özel alan bulunamadı"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "iş akışı çalıştırma"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Geçersiz değişken algılandı."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr "URI şeması ‘{parts.scheme}’ izin verilmez. İzin verilen şemalar:
msgid "Unable to parse URI {value}"
msgstr "URI {value} işlenemiyor"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po
index ec4d5c2a7..dc7187dfa 100644
--- a/src/locale/uk_UA/LC_MESSAGES/django.po
+++ b/src/locale/uk_UA/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Language: uk_UA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "Значення має бути коректним JSON."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Хибний вираз запиту користувацького поля"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Недопустимий список виразів. Має бути непустим."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Неприпустимий логічний оператор {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Перевищено максимальну кількість умов запиту."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не є дійсним користувацьким полем."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не підтримує вираз {expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Не знайдено користувацьке поле"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr ""
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "Виявлено неправильну змінну."
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr ""
msgid "Unable to parse URI {value}"
msgstr ""
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""
diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po
index 714739215..b90710588 100644
--- a/src/locale/vi_VN/LC_MESSAGES/django.po
+++ b/src/locale/vi_VN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Language: vi_VN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Tài liệu"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "."
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "Biểu thức truy vấn trường tùy chỉnh không hợp lệ"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "Danh sách biểu thức không hợp lệ. Phải không rỗng."
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "Toán tử lô-gic không hợp lệ {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "Đã vượt quá số điều kiện truy vấn tối đa."
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} không phải là trường tùy chỉnh hợp lệ."
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} không hỗ trợ expr truy vấn{expr!r}."
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "Đã vượt quá độ sâu lồng nhau tối đa."
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Không tìm thấy trường tùy chỉnh"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "các lần chạy quy trình"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "Không có đủ quyền."
@@ -1379,7 +1379,7 @@ msgstr "Đã phát hiện biến số không hợp lệ."
msgid "Duplicate document identifiers are not allowed."
msgstr "Không cho phép các định danh tài liệu trùng lặp"
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "Không tìm thấy tài liệu: %(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "Giao thức URI '{parts.scheme}' không được phép. Các giao thức
msgid "Unable to parse URI {value}"
msgstr "Không thể phân tích URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "Không đủ quyền để chia sẻ tài liệu %(id)s"
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "Gói đang được xử lý"
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "Liên kết chia sẻ gói vẫn đang được chuẩn bị. Vui lòng thử lại sau."
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "Không tồn tại liên kết chia sẻ gói"
diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po
index d069d4879..fc1c91cc3 100644
--- a/src/locale/zh_CN/LC_MESSAGES/django.po
+++ b/src/locale/zh_CN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文档"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "值必须是有效的 JSON 格式。"
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "无效的自定义字段查询表达式"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "无效的表达式列表。必须不为空。"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "无效的逻辑运算符 {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "超出查询条件的最大数量。"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是一个有效的自定义字段。"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支持查询表达式 {expr!r}。"
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "超出最大嵌套深度。"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "Custom field not found"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "工作流运行"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr "权限不足。"
@@ -1379,7 +1379,7 @@ msgstr "检测到无效变量。"
msgid "Duplicate document identifiers are not allowed."
msgstr "不允许重复文档标识符。"
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr "未找到文档:%(ids)s"
@@ -1635,36 +1635,36 @@ msgstr "URI 格式 '{parts.scheme}' 不支持。支持的格式有:{', '.join(
msgid "Unable to parse URI {value}"
msgstr "无法解析 URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr "无效的more_like_id"
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr "无效的 AI 配置。"
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr "AI 后端请求超时。"
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr "只能指定 text、title_search、query 或 more_like_id 中的一项。"
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr "权限不足以分享文件:%(id)s。"
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr "捆绑包已在处理中。"
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr "分享链接包仍在准备中,请稍后再试。"
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr "分享链接包不可用。"
diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po
index 8d2bacbe4..40fbbf94e 100644
--- a/src/locale/zh_TW/LC_MESSAGES/django.po
+++ b/src/locale/zh_TW/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-25 07:12+0000\n"
-"PO-Revision-Date: 2026-07-25 07:14\n"
+"POT-Creation-Date: 2026-07-27 19:34+0000\n"
+"PO-Revision-Date: 2026-07-27 19:35\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Language: zh_TW\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文件"
-#: documents/filters.py:470
+#: documents/filters.py:472
msgid "Value must be valid JSON."
msgstr "參數值必須是有效的 JSON。"
-#: documents/filters.py:489
+#: documents/filters.py:491
msgid "Invalid custom field query expression"
msgstr "無效的自訂欄位查詢表達式"
-#: documents/filters.py:499
+#: documents/filters.py:501
msgid "Invalid expression list. Must be nonempty."
msgstr "無效的表達式列表,不能為空。"
-#: documents/filters.py:520
+#: documents/filters.py:522
msgid "Invalid logical operator {op!r}"
msgstr "無效的邏輯運算符 {op!r}"
-#: documents/filters.py:534
+#: documents/filters.py:536
msgid "Maximum number of query conditions exceeded."
msgstr "超過查詢條件的最大數量。"
-#: documents/filters.py:598
+#: documents/filters.py:600
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是有效的自訂欄位。"
-#: documents/filters.py:635
+#: documents/filters.py:637
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支援查詢表達式 {expr!r}。"
-#: documents/filters.py:750 documents/models.py:136
+#: documents/filters.py:752 documents/models.py:136
msgid "Maximum nesting depth exceeded."
msgstr "超過最大巢狀深度。"
-#: documents/filters.py:1067
+#: documents/filters.py:1094
msgid "Custom field not found"
msgstr "找不到自訂欄位"
@@ -1339,7 +1339,7 @@ msgid "workflow runs"
msgstr "執行工作流程"
#: documents/serialisers.py:522 documents/serialisers.py:874
-#: documents/serialisers.py:2763 documents/views.py:298 documents/views.py:2541
+#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
#: paperless_mail/serialisers.py:155
msgid "Insufficient permissions."
msgstr ""
@@ -1379,7 +1379,7 @@ msgstr "偵測到無效的變數。"
msgid "Duplicate document identifiers are not allowed."
msgstr ""
-#: documents/serialisers.py:2849 documents/views.py:4500
+#: documents/serialisers.py:2849 documents/views.py:4512
#, python-format
msgid "Documents not found: %(ids)s"
msgstr ""
@@ -1635,36 +1635,36 @@ msgstr "URI 協定「{parts.scheme}」不被允許。允許的協定有:{', '.
msgid "Unable to parse URI {value}"
msgstr "無法解析 URI {value}"
-#: documents/views.py:291 documents/views.py:2538
+#: documents/views.py:292 documents/views.py:2550
msgid "Invalid more_like_id"
msgstr ""
-#: documents/views.py:1556
+#: documents/views.py:1562
msgid "Invalid AI configuration."
msgstr ""
-#: documents/views.py:1565
+#: documents/views.py:1571
msgid "AI backend request timed out."
msgstr ""
-#: documents/views.py:2363 documents/views.py:2684
+#: documents/views.py:2375 documents/views.py:2696
msgid "Specify only one of text, title_search, query, or more_like_id."
msgstr ""
-#: documents/views.py:4512
+#: documents/views.py:4524
#, python-format
msgid "Insufficient permissions to share document %(id)s."
msgstr ""
-#: documents/views.py:4558
+#: documents/views.py:4570
msgid "Bundle is already being processed."
msgstr ""
-#: documents/views.py:4619
+#: documents/views.py:4631
msgid "The share link bundle is still being prepared. Please try again later."
msgstr ""
-#: documents/views.py:4629
+#: documents/views.py:4641
msgid "The share link bundle is unavailable."
msgstr ""